1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 08:43:33 +00:00

Match linter rules

This commit is contained in:
Matt Gibson
2021-02-03 12:21:22 -06:00
parent 62a43e536c
commit e76e56d824
19 changed files with 62 additions and 53 deletions

View File

@@ -1,7 +1,7 @@
import {
Component,
OnDestroy,
NgZone,
OnDestroy,
} from '@angular/core';
import {
ActivatedRoute,
@@ -43,7 +43,7 @@ export class LockComponent extends BaseLockComponent implements OnDestroy {
async ngOnInit() {
await super.ngOnInit();
this.route.queryParams.subscribe((params) => {
this.route.queryParams.subscribe(params => {
if (this.supportsBiometric && params.promptBiometric) {
setTimeout(() => this.unlockBiometric(), 1000);
}