1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-12-22 16:29:09 +01:00

Adding the setting of the account to null on logout for web (#9592)

Merging.
This commit is contained in:
Tom 2024-06-26 14:42:25 -04:00 committed by GitHub
parent ab83e822f7
commit 89a34a396c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -338,6 +338,7 @@ export class AppComponent implements OnDestroy, OnInit {
this.authService.logOut(async () => {
await this.stateService.clean({ userId: userId });
await this.accountService.clean(userId);
await this.accountService.switchAccount(null);
await logoutPromise;