diff --git a/frontend/src/app/shared-components/redirect/redirect.component.ts b/frontend/src/app/shared-components/redirect/redirect.component.ts index be1e58f..bcb823c 100644 --- a/frontend/src/app/shared-components/redirect/redirect.component.ts +++ b/frontend/src/app/shared-components/redirect/redirect.component.ts @@ -25,7 +25,7 @@ export class RedirectComponent implements OnInit { if (type) { const target = this.getRedirectTarget(type); if (target) { - this.router.navigateByUrl(target).then(); + window.location.href = target; } else { this.router.navigate(['/']).then(); }