From 3b455928dcfeb5bdb184a05c3d1a084a71d9c2f0 Mon Sep 17 00:00:00 2001 From: Michael Wilson Date: Wed, 22 Jan 2025 15:13:09 +0930 Subject: [PATCH] don't skip step when mfa less than 3 --- src/2sv/smartphone/Intro.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/2sv/smartphone/Intro.vue b/src/2sv/smartphone/Intro.vue index d8b2028..7499770 100644 --- a/src/2sv/smartphone/Intro.vue +++ b/src/2sv/smartphone/Intro.vue @@ -52,7 +52,7 @@ const hasBackup = (m) => { } const nextUrl = computed(() => { - if (!hasKey(mfa)) { + if (!hasKey(mfa) || mfa.numVerified < 3) { return '/2sv/usb-security-key/intro' } if (!hasBackup(mfa)) {