aboutsummaryrefslogtreecommitdiff
path: root/packages/merchant-backoffice-ui/src/components/exception/login.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/merchant-backoffice-ui/src/components/exception/login.tsx')
-rw-r--r--packages/merchant-backoffice-ui/src/components/exception/login.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/merchant-backoffice-ui/src/components/exception/login.tsx b/packages/merchant-backoffice-ui/src/components/exception/login.tsx
index 435ff1d6a..52b5b2a24 100644
--- a/packages/merchant-backoffice-ui/src/components/exception/login.tsx
+++ b/packages/merchant-backoffice-ui/src/components/exception/login.tsx
@@ -141,8 +141,8 @@ export function LoginModal({ onConfirm, withMessage }: Props): VNode {
class="button is-info"
onClick={async () => {
const secretToken = normalizeToken(token);
- const isOk = await testLogin(url, secretToken);
- if (isOk) {
+ const { valid, cause } = await testLogin(url, secretToken);
+ if (valid) {
onConfirm(url, secretToken);
} else {
onConfirm(url);