From 7726310882eda5abad4625c77c9c064037ee7117 Mon Sep 17 00:00:00 2001 From: Igor Propisnov Date: Wed, 26 Jun 2024 18:55:23 +0200 Subject: [PATCH] fix broken url --- frontend/src/app/pages/home-root/home-root.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/pages/home-root/home-root.component.ts b/frontend/src/app/pages/home-root/home-root.component.ts index 535f2c4..7b5328d 100644 --- a/frontend/src/app/pages/home-root/home-root.component.ts +++ b/frontend/src/app/pages/home-root/home-root.component.ts @@ -28,7 +28,7 @@ export class HomeComponent implements OnInit { }, (error: HttpErrorResponse) => { if (error.status === 401) { - this.router.navigate(['signup'], { + this.router.navigate(['welcome'], { queryParams: { login: true }, }); }