Skip to content

Commit

Permalink
don't skip step when mfa less than 3
Browse files Browse the repository at this point in the history
  • Loading branch information
hobbitronics committed Jan 22, 2025
1 parent b8539a4 commit 3b45592
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/2sv/smartphone/Intro.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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)) {
Expand Down

0 comments on commit 3b45592

Please sign in to comment.