1
0
mirror of https://github.com/bitwarden/browser.git synced 2025-02-21 02:11:54 +01:00

added query params to logi component

This commit is contained in:
gbubemismith 2023-08-03 23:24:07 -04:00
parent 0a6842a0a8
commit d7b9f92f41
No known key found for this signature in database

View File

@ -170,7 +170,11 @@ export class LoginComponent extends CaptchaProtectedComponent implements OnInit
if (this.onSuccessfulLoginNavigate != null) {
this.onSuccessfulLoginNavigate();
} else {
this.router.navigate([this.successRoute]);
this.router.navigate([this.successRoute], {
queryParams: {
sessionId: this.sessionId,
},
});
}
}
} catch (e) {