From 820b03dd49e3160d343970d6a96d4d6f4caead7e Mon Sep 17 00:00:00 2001 From: rr-bw <102181210+rr-bw@users.noreply.github.com> Date: Mon, 25 Nov 2024 11:34:53 -0800 Subject: [PATCH] fix(biometrics): [PM-13901] Bugfix for "Ask for biometrics on launch does not auto prompt biometrics" (#12144) This PR ensures that, on the Chrome browser extension, biometrics gets auto-prompted when the user selects "Ask for biometrics on launch" by resetting the `isInitialLockScreen` to `true` on active account change. Feature flag: `ExtensionRefresh` ON. --- libs/auth/src/angular/lock/lock.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/auth/src/angular/lock/lock.component.ts b/libs/auth/src/angular/lock/lock.component.ts index 94c226f3f6..d8a2853a04 100644 --- a/libs/auth/src/angular/lock/lock.component.ts +++ b/libs/auth/src/angular/lock/lock.component.ts @@ -228,6 +228,7 @@ export class LockV2Component implements OnInit, OnDestroy { this.unlockOptions = null; this.activeUnlockOption = null; this.formGroup = null; // new form group will be created based on new active unlock option + this.isInitialLockScreen = true; // Desktop properties: this.biometricAsked = false;