diff --git a/src/angular/hq/src/app/app.routes.ts b/src/angular/hq/src/app/app.routes.ts index 4a3a990e..b32759e5 100644 --- a/src/angular/hq/src/app/app.routes.ts +++ b/src/angular/hq/src/app/app.routes.ts @@ -424,7 +424,8 @@ export const routes: Routes = [ }, { path: 'dashboard', - canActivate: [userRoleGuard(HQRole.Staff)], + title: 'Dashboard', + canActivate: [AutoLoginPartialRoutesGuard, userRoleGuard(HQRole.Staff)], loadComponent: () => import('./staff-dashboard/staff-dashboard.component').then( (m) => m.StaffDashboardComponent,