Skip to content

Commit

Permalink
Update app-routing.module.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
bistaastha authored Jan 20, 2025
1 parent ab4f58f commit ef785ac
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app/app-routing.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,21 @@ const routes: Routes = [
},
{
path: 'auth',
loadChildren: () => import('./auth/auth.module').then((m) => m.AuthModule),
loadChildren: (): void => import('./auth/auth.module').then((m) => m.AuthModule),
},
{
path: 'post_verification',
loadChildren: () => import('./post-verification/post-verification.module').then((m) => m.PostVerificationModule),
loadChildren: (): void => import('./post-verification/post-verification.module').then((m) => m.PostVerificationModule),
canActivate: [AuthGuard],
},
{
path: 'enterprise',
loadChildren: () => import('./fyle/fyle.module').then((m) => m.FyleModule),
loadChildren: (): void => import('./fyle/fyle.module').then((m) => m.FyleModule),
canActivate: [AuthGuard, VerifiedOrgAuthGuard],
},
{
path: 'deep_link_redirection',
loadChildren: () =>
loadChildren: (): void =>
import('./deep-link-redirection/deep-link-redirection.module').then((m) => m.DeepLinkRedirectionPageModule),
},
];
Expand Down

0 comments on commit ef785ac

Please sign in to comment.