mirror of
https://github.com/bitwarden/browser
synced 2025-12-14 23:33:31 +00:00
Do not switch accounts if it is already the active account (#1229)
This commit is contained in:
committed by
GitHub
parent
f32b917a9f
commit
d885e3296b
@@ -89,8 +89,12 @@ export class AccountSwitcherComponent implements OnInit {
|
||||
}
|
||||
|
||||
async switch(userId: string) {
|
||||
this.messagingService.send("switchAccount", { userId: userId });
|
||||
this.toggle();
|
||||
|
||||
if (userId === (await this.stateService.getUserId())) {
|
||||
return;
|
||||
}
|
||||
this.messagingService.send("switchAccount", { userId: userId });
|
||||
}
|
||||
|
||||
private async createSwitcherAccounts(baseAccounts: {
|
||||
|
||||
Reference in New Issue
Block a user