1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

Fix client navigation after login.

This commit is contained in:
Alec Rippberger
2024-09-25 16:47:17 -05:00
parent 7767545a50
commit 1206017b57

View File

@@ -268,14 +268,12 @@ export class LoginComponent implements OnInit, OnDestroy {
if (this.clientType === ClientType.Web) {
// ...on Browser/Desktop
await this.goAfterLogIn(authResult.userId);
} else {
if (this.clientType === ClientType.Browser) {
} else if (this.clientType === ClientType.Browser) {
this.loginEmailService.clearValues();
await this.router.navigate(["/tabs/vault"]);
} else {
await this.router.navigate(["vault"]); // Desktop
}
}
await this.router.navigate(["vault"]);
this.loginEmailService.clearValues();
}