mirror of
https://github.com/bitwarden/browser
synced 2025-12-11 13:53:34 +00:00
Resolve biometric error dissapearing before being read (#501)
This commit is contained in:
@@ -156,7 +156,7 @@ export class LockComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async unlockBiometric() {
|
async unlockBiometric(): Promise<boolean> {
|
||||||
if (!this.biometricLock) {
|
if (!this.biometricLock) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -166,6 +166,8 @@ export class LockComponent implements OnInit {
|
|||||||
if (success) {
|
if (success) {
|
||||||
await this.doContinue();
|
await this.doContinue();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return success;
|
||||||
}
|
}
|
||||||
|
|
||||||
togglePassword() {
|
togglePassword() {
|
||||||
|
|||||||
Reference in New Issue
Block a user