fix: missing route for user detail page (#12725)

### What problem does this PR solve?

Add missing route for navigating to `/admin/users/:id`

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
Jimmy Ben Klieve
2026-01-20 18:55:44 +08:00
committed by GitHub
parent 32841549c1
commit 1c65f64bda

View File

@ -396,6 +396,10 @@ const routeConfig = [
path: '',
Component: lazy(() => import('@/pages/admin/login')),
},
{
path: `${Routes.AdminUserManagement}/:id`,
Component: lazy(() => import('@/pages/admin/user-detail')),
},
{
path: Routes.Admin,
Component: lazy(