1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

added query params to logi component

This commit is contained in:
gbubemismith
2023-08-03 23:24:07 -04:00
parent 1ab0310936
commit 5875a99c50

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) {