Merge remote-tracking branch 'refs/remotes/origin/staging' into staging

This commit is contained in:
kevin
2023-07-04 09:42:37 +07:00
1905 changed files with 550 additions and 13 deletions

9
frontend/dashboard/src/routes/index.tsx Executable file → Normal file
View File

@@ -315,6 +315,10 @@ export default function Router() {
path: 'profile',
element: <Profile />,
},
{
path: 'cs-membership',
element: <Membership />,
},
],
},
// {
@@ -445,4 +449,7 @@ const Claims = Loadable(lazy(() => import('../pages/Claims/Index')));
const ClaimsCreate = Loadable(lazy(() => import('../pages/Claims/CreateUpdate')));
const ClaimShow = Loadable(lazy(() => import('../pages/Claims/Show')));
const ClaimRequests = Loadable(lazy(() => import('../pages/ClaimRequests/Index')));
const ClaimRequests = Loadable(lazy(() => import('../pages/ClaimRequests/Index')));
const Membership = Loadable(lazy(() => import('../pages/Service/Membership/index')));

0
frontend/dashboard/src/routes/paths.ts Executable file → Normal file
View File