Compare commits
2 Commits
5adeaa0dc7
...
83abb95f17
| Author | SHA1 | Date | |
|---|---|---|---|
| 83abb95f17 | |||
| f31664dca4 |
@ -29,7 +29,6 @@
|
||||
"react-dom": "^19.1.0",
|
||||
"react-hook-form": "^7.58.1",
|
||||
"react-i18next": "^15.5.1",
|
||||
"sequelize": "^6.37.5",
|
||||
"zod": "^4.1.11"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
||||
@ -10,7 +10,9 @@ const CustomersLayout = lazy(() =>
|
||||
const CustomersList = lazy(() => import("./pages").then((m) => ({ default: m.CustomersListPage })));
|
||||
const CustomerView = lazy(() => import("./pages").then((m) => ({ default: m.CustomerViewPage })));
|
||||
const CustomerAdd = lazy(() => import("./pages").then((m) => ({ default: m.CustomerCreatePage })));
|
||||
const CustomerUpdate = lazy(() => import("./pages").then((m) => ({ default: m.CustomerUpdatePage })));
|
||||
const CustomerUpdate = lazy(() =>
|
||||
import("./pages").then((m) => ({ default: m.CustomerUpdatePage }))
|
||||
);
|
||||
|
||||
export const CustomerRoutes = (params: ModuleClientParams): RouteObject[] => {
|
||||
return [
|
||||
|
||||
@ -13,7 +13,6 @@
|
||||
"./api": "./src/api/index.ts"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"sequelize": "^6.37.5",
|
||||
"express": "^4.18.2",
|
||||
"zod": "^4.1.11"
|
||||
},
|
||||
|
||||
@ -14,7 +14,6 @@
|
||||
"./common": "./src/common/index.ts"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"sequelize": "^6.37.5",
|
||||
"express": "^4.18.2",
|
||||
"zod": "^4.1.11"
|
||||
},
|
||||
|
||||
Loading…
Reference in New Issue
Block a user