fix: fix routing

This commit is contained in:
Phan Huy Tran 2025-02-12 10:54:47 +01:00
parent 80c8d66d1e
commit 80794dd24d

View File

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