Skip to content

Commit

Permalink
PM-8113 - TwoFactorAuthWebAuthnComp - new tab flow - fix remember me
Browse files Browse the repository at this point in the history
  • Loading branch information
JaredSnider-Bitwarden committed Feb 9, 2025
1 parent aa44bd0 commit 76546a5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export class TwoFactorAuthWebAuthnComponent implements OnInit, OnDestroy {

private submitWebAuthnNewTabResponse() {
const webAuthnNewTabResponse = this.route.snapshot.paramMap.get("webAuthnResponse");
const remember = this.route.snapshot.queryParamMap.get("remember") === "true";
const remember = this.route.snapshot.paramMap.get("remember") === "true";

if (webAuthnNewTabResponse != null) {
this.webAuthnResultEmitter.emit({
Expand Down

0 comments on commit 76546a5

Please sign in to comment.