From cff14ffea3c59a1c1828a67eaa9a409c6a50980e Mon Sep 17 00:00:00 2001 From: Jared Snider <116684653+JaredSnider-Bitwarden@users.noreply.github.com> Date: Thu, 13 Mar 2025 09:39:04 -0400 Subject: [PATCH] fix(Extension2FAWebAuthn): [Auth/PM-19086] Read webauthn response off correct property (#13796) --- .../src/angular/two-factor-auth/two-factor-auth.component.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libs/auth/src/angular/two-factor-auth/two-factor-auth.component.ts b/libs/auth/src/angular/two-factor-auth/two-factor-auth.component.ts index c5e174484b..164102bc3b 100644 --- a/libs/auth/src/angular/two-factor-auth/two-factor-auth.component.ts +++ b/libs/auth/src/angular/two-factor-auth/two-factor-auth.component.ts @@ -188,8 +188,7 @@ export class TwoFactorAuthComponent implements OnInit, OnDestroy { this.twoFactorAuthComponentService.shouldCheckForWebAuthnQueryParamResponse() && webAuthnSupported ) { - const webAuthn2faResponse = - this.activatedRoute.snapshot.queryParamMap.get("webAuthnResponse"); + const webAuthn2faResponse = this.activatedRoute.snapshot.paramMap.get("webAuthnResponse"); if (webAuthn2faResponse) { this.selectedProviderType = TwoFactorProviderType.WebAuthn; return;