fix: user management & profit chart

This commit is contained in:
ferdiansyah783
2025-08-10 15:47:04 +07:00
parent de93de2e6d
commit 48570c018f
23 changed files with 989 additions and 599 deletions
+3 -1
View File
@@ -5,13 +5,15 @@ import productReducer from '@/redux-store/slices/product'
import customerReducer from '@/redux-store/slices/customer'
import paymentMethodReducer from '@/redux-store/slices/paymentMethod'
import ingredientReducer from '@/redux-store/slices/ingredient'
import orderReducer from '@/redux-store/slices/order'
export const store = configureStore({
reducer: {
productReducer,
customerReducer,
paymentMethodReducer,
ingredientReducer
ingredientReducer,
orderReducer
},
middleware: getDefaultMiddleware => getDefaultMiddleware({ serializableCheck: false })
})