1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

Don't clear state if not logged in (#2499)

This commit is contained in:
Thomas Rittson
2022-04-13 09:15:46 +10:00
committed by GitHub
parent 29402f3109
commit 8cc3539716

View File

@@ -253,6 +253,10 @@ export class AppComponent implements OnInit {
}
private async clearComponentStates() {
if (!(await this.stateService.getIsAuthenticated())) {
return;
}
await Promise.all([
this.stateService.setBrowserGroupingComponentState(null),
this.stateService.setBrowserCipherComponentState(null),