From 12f820b88c376c0fe2a7a8b4e8416b8dbcddf1f6 Mon Sep 17 00:00:00 2001 From: Justin Baur <19896123+justindbaur@users.noreply.github.com> Date: Wed, 8 Feb 2023 17:00:11 -0500 Subject: [PATCH] Open WebAuthn Prompt in New Tab (#4695) - We already did this for Firefox and Safari --- apps/browser/src/auth/popup/two-factor.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/browser/src/auth/popup/two-factor.component.ts b/apps/browser/src/auth/popup/two-factor.component.ts index 4f1515a6d8..56424cd107 100644 --- a/apps/browser/src/auth/popup/two-factor.component.ts +++ b/apps/browser/src/auth/popup/two-factor.component.ts @@ -68,8 +68,8 @@ export class TwoFactorComponent extends BaseTwoFactorComponent { return syncService.fullSync(true); }; super.successRoute = "/tabs/vault"; - this.webAuthnNewTab = - this.platformUtilsService.isFirefox() || this.platformUtilsService.isSafari(); + // FIXME: Chromium 110 has broken WebAuthn support in extensions via an iframe + this.webAuthnNewTab = true; } async ngOnInit() {