commit 94ca8b41f1bd67b56de8b332d0536dbed3259c86
parent b15b35fd4a7f87c7498ecf0959ff72d4060684a4
Author: Sebastian <sebasjm@taler-systems.com>
Date: Tue, 21 Jul 2026 15:10:00 -0300
missing condition to unable action
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/packages/libeufin-bank-webui/src/pages/account/UpdateAccountPassword.tsx b/packages/libeufin-bank-webui/src/pages/account/UpdateAccountPassword.tsx
@@ -106,7 +106,7 @@ export function UpdateAccountPassword({
api.updatePassword({ username, token }, request, {
challengeIds,
}),
- !password || !token
+ !password || !token || !!errors
? undefined
: ([
accountName,