taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit 75bad2dc8d9cf289f709d07e9f7c931cd258454f
parent beb73940b19ebdc3cc5da42e09d2a946b0c60e7c
Author: Sebastian <sebasjm@taler-systems.com>
Date:   Wed, 14 Jan 2026 13:01:50 -0300

fix from vlada feedback

Diffstat:
Mpackages/bank-ui/src/pages/SolveMFA.tsx | 4++--
Mpackages/merchant-backoffice-ui/src/components/SolveMFA.tsx | 4++--
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/packages/bank-ui/src/pages/SolveMFA.tsx b/packages/bank-ui/src/pages/SolveMFA.tsx @@ -122,7 +122,7 @@ function SolveChallenge({ case TanChannel.SMS: return ( <i18n.Translate> - The verification code sent to the phone number starting + The verification code sent to the phone number ending with <b>"{c.tan_info}"</b> </i18n.Translate> ); @@ -400,7 +400,7 @@ export function SolveMFAChallenges({ case TanChannel.SMS: return ( <i18n.Translate> - To an phone starting with " + To an phone ending with " {challenge.tan_info}" </i18n.Translate> ); diff --git a/packages/merchant-backoffice-ui/src/components/SolveMFA.tsx b/packages/merchant-backoffice-ui/src/components/SolveMFA.tsx @@ -133,7 +133,7 @@ function SolveChallenge({ case TanChannel.SMS: return ( <i18n.Translate> - The verification code sent to the phone number starting + The verification code sent to the phone number ending with "<b>{challenge.tan_info}</b>" </i18n.Translate> ); @@ -370,7 +370,7 @@ export function SolveMFAChallenges({ case TanChannel.SMS: return ( <i18n.Translate> - An SMS to the phone number starting with{" "} + An SMS to the phone number ending with{" "} <span>{challenge.tan_info}</span> </i18n.Translate> );