fix: fix routing

This commit is contained in:
Phan Huy Tran 2025-02-12 10:54:47 +01:00
parent f6bcc1be11
commit 4b9574ac96

View file

@ -9,13 +9,8 @@ export const routes: Routes = [
component: LandingPageComponent,
},
{
path: '**',
path: 'home',
component: HomepageComponent,
canActivate: [authGuard],
children: [
{
path: 'home',
component: HomepageComponent,
},
],
},
}
];