commit b3553649a522e39c9a3dd9a41216fce53da0b1a8
parent 760187434b8b5abce6e55872a53ba14a7d2028d3
Author: Sebastian <sebasjm@gmail.com>
Date: Thu, 6 Nov 2025 18:14:31 -0300
fix wrong strings
Diffstat:
2 files changed, 3 insertions(+), 6 deletions(-)
diff --git a/packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx b/packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx
@@ -467,7 +467,6 @@ export function InputPaytoForm<T>({
label={i18n.str`Name of the account holder`}
placeholder="John Doe"
tooltip={i18n.str`Legal name of the person holding the account.`}
- help={i18n.str`This supports Taler Revenue API then you can add the name of the bank account holder.`}
/>
</Fragment>
)}
diff --git a/packages/merchant-backoffice-ui/src/paths/login/index.tsx b/packages/merchant-backoffice-ui/src/paths/login/index.tsx
@@ -63,7 +63,9 @@ export function LoginPage({ showCreateAccount }: Props): VNode {
const [password, setPassword] = useState("");
const [notif, setNotif] = useState<Notification | undefined>(undefined);
const { state, logIn, getInstanceForUsername, config } = useSessionContext();
- const [username, setUsername] = useState(showCreateAccount? "" : state.instance);
+ const [username, setUsername] = useState(
+ showCreateAccount ? "" : state.instance,
+ );
const { i18n } = useTranslationContext();
@@ -154,10 +156,6 @@ export function LoginPage({ showCreateAccount }: Props): VNode {
class="modal-card-body"
style={{ border: "1px solid", borderTop: 0, borderBottom: 0 }}
>
- <i18n.Translate>
- Please enter your password for <b>"{state.instance}"</b>.
- </i18n.Translate>
-
<div class="field is-horizontal">
<div class="field-label is-normal">
<label class="label">