commit b3ad27f5a2537cb5f97e1b6ce272bd180e7ac532
parent f56bb45bf9e85586c121a8c020166d6340b51eae
Author: Sebastian <sebasjm@gmail.com>
Date: Thu, 25 Sep 2025 13:43:23 -0300
fix #10460
Diffstat:
2 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/packages/bank-ui/src/pages/SolveMFA.tsx b/packages/bank-ui/src/pages/SolveMFA.tsx
@@ -69,11 +69,11 @@ function SolveChallenge({
case HttpStatusCode.Unauthorized:
return i18n.str`Failed to validate the verification code.`;
case HttpStatusCode.TooManyRequests:
- return i18n.str`Failed to validate the verification code.`;
+ return i18n.str`Too many challenges are active right now, you must wait or confirm current challenges.`;
case TalerErrorCode.BANK_TAN_CHALLENGE_FAILED:
- return i18n.str`Failed to validate the verification code.`;
+ return i18n.str`Wrong authentication number.`;
case TalerErrorCode.BANK_TAN_CHALLENGE_EXPIRED:
- return i18n.str`Failed to validate the verification code.`;
+ return i18n.str`Expired challenge.`;
}
},
),
diff --git a/packages/bank-ui/src/pages/regional/CreateCashout.tsx b/packages/bank-ui/src/pages/regional/CreateCashout.tsx
@@ -425,6 +425,8 @@ export function CreateCashout({
<dd class="text-sm text-gray-900">
<RenderAmount
value={sellFee}
+ negative
+ withSign
spec={fiat_currency_specification!}
/>
</dd>