Skip to content

Commit e0ab732

Browse files
committed
app routing fix
1 parent 220c90f commit e0ab732

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/app.routing.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import { AuthErrorComponent } from './auth-error/auth-error.component';
1717

1818
const routes: Routes = [
1919
{ path: "add-user", component: AddUserComponent, canActivate: [AuthGuard, AdminGuard] },
20-
{ path: "auth-error", component: AuthErrorComponent, canActivate: [AuthGuard] }
20+
{ path: "auth-error", component: AuthErrorComponent, canActivate: [AuthGuard] },
2121
{ path: 'export/:id', component: ExportComponent, canActivate: [AuthGuard] },
2222
{ path: 'user-management', component: UserManagementComponent, canActivate: [AuthGuard, AdminGuard] },
2323
{ path: "add-theme", component: ProposeThemeComponent },

0 commit comments

Comments
 (0)