taler-typescript-core

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

commit 5ed4d5d54da2bfac8eca3b58e51737c48e7d065f
parent fe6e9be70225cf2953822ff64b9e90066cab97ea
Author: Sebastian <sebasjm@gmail.com>
Date:   Sat, 29 Oct 2022 19:55:05 -0300

fix typo

Diffstat:
Mpackages/taler-wallet-webextension/src/wallet/ManageAccount/state.ts | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/packages/taler-wallet-webextension/src/wallet/ManageAccount/state.ts b/packages/taler-wallet-webextension/src/wallet/ManageAccount/state.ts @@ -71,7 +71,7 @@ export function useComponentState( ? "that account is already present" : undefined; - const unableToAdd = !type || !alias || !!paytoUriError || !uri; + const unableToAdd = !type || !alias || paytoUriError !== undefined || uri !== undefined; const accountByType: AccountByType = { iban: [],