1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-06 11:43:51 +00:00

update variable name

This commit is contained in:
rr-bw
2025-11-12 11:03:13 -08:00
parent 6c49612fd9
commit 8e81218313

View File

@@ -362,7 +362,7 @@ export class AppComponent implements OnInit, OnDestroy {
}
private async processPendingAuthRequests() {
this.processingPendingAuth = true;
this.processingPendingAuthRequests = true;
try {
// Always query server for all pending requests and open a dialog for each
@@ -392,7 +392,7 @@ export class AppComponent implements OnInit, OnDestroy {
}
}
} finally {
this.processingPendingAuth = false;
this.processingPendingAuthRequests = false;
}
}
}