Fix client navigation after login.

This commit is contained in:
Alec Rippberger 2024-09-25 16:47:17 -05:00
parent 7767545a50
commit 1206017b57
No known key found for this signature in database
GPG Key ID: 9DD8DA583B28154A
1 changed files with 4 additions and 6 deletions

View File

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