diff --git a/libs/angular/src/auth/components/login.component.ts b/libs/angular/src/auth/components/login.component.ts index aed29659f4..b4e7e60c66 100644 --- a/libs/angular/src/auth/components/login.component.ts +++ b/libs/angular/src/auth/components/login.component.ts @@ -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) {