aboutsummaryrefslogtreecommitdiff
path: root/packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx')
-rw-r--r--packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx16
1 files changed, 1 insertions, 15 deletions
diff --git a/packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx b/packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx
index 1a8e9bdc1..c4ba1f0f2 100644
--- a/packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx
+++ b/packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx
@@ -83,15 +83,6 @@ export function UpdatePage({ account, onUpdate, onBack }: Props): VNode {
? i18n.str`required`
: undefined,
- repeatPassword:
- state.credit_facade_credentials?.type !== "basic"
- ? undefined
- : !(state.credit_facade_credentials as any).repeatPassword
- ? i18n.str`required`
- : (state.credit_facade_credentials as any).repeatPassword !==
- state.credit_facade_credentials.password
- ? i18n.str`doesn't match`
- : undefined,
}),
};
@@ -158,7 +149,7 @@ export function UpdatePage({ account, onUpdate, onBack }: Props): VNode {
<Input<Entity>
name="credit_facade_url"
label={i18n.str`Account info URL`}
- help="https://bank.com"
+ help="https://bank.demo.taler.net/accounts/_username_/taler-revenue/"
expand
tooltip={i18n.str`From where the merchant can download information about incoming wire transfers to this account`}
/>
@@ -186,11 +177,6 @@ export function UpdatePage({ account, onUpdate, onBack }: Props): VNode {
label={i18n.str`Password`}
tooltip={i18n.str`Password to access the account information.`}
/>
- <Input
- name="credit_facade_credentials.repeatPassword"
- inputType="password"
- label={i18n.str`Repeat password`}
- />
</Fragment>
) : undefined}
</FormProvider>