fix: clean folder

This commit is contained in:
ferdiansyah783
2025-08-07 03:53:40 +07:00
parent 5f24ec7899
commit a72a64215a
208 changed files with 174 additions and 29968 deletions
+3 -10
View File
@@ -1,20 +1,13 @@
// Third-party Imports
import { configureStore } from '@reduxjs/toolkit'
// Slice Imports
import chatReducer from '@/redux-store/slices/chat'
import calendarReducer from '@/redux-store/slices/calendar'
import kanbanReducer from '@/redux-store/slices/kanban'
import emailReducer from '@/redux-store/slices/email'
import productReducer from '@/redux-store/slices/product'
import customerReducer from '@/redux-store/slices/customer'
export const store = configureStore({
reducer: {
chatReducer,
calendarReducer,
kanbanReducer,
emailReducer,
productReducer
productReducer,
customerReducer
},
middleware: getDefaultMiddleware => getDefaultMiddleware({ serializableCheck: false })
})