From 127a2628b61b0a151eb5225af7ecaf483f907665 Mon Sep 17 00:00:00 2001 From: Ashutosh Bishnoi Date: Tue, 27 Apr 2021 11:18:42 +0530 Subject: Deleting somne of the stores --- modern/src/store/index.js | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'modern/src/store/index.js') diff --git a/modern/src/store/index.js b/modern/src/store/index.js index 9163e44..6e2bb20 100644 --- a/modern/src/store/index.js +++ b/modern/src/store/index.js @@ -7,10 +7,6 @@ import { geofencesReducer as geofences } from './geofences'; import { groupsReducer as groups } from './groups'; import { driversReducer as drivers } from './drivers'; import { maintenancesReducer as maintenances } from './maintenances'; -import { calendarsReducer as calendars } from './calendars'; -import { computedAttributesReducer as computedAttributes } from './computedAttributes'; -import { commandsReducer as commands } from './commands'; -import { notificationsReducer as notifications } from './notifications'; const reducer = combineReducers({ session, @@ -20,11 +16,6 @@ const reducer = combineReducers({ groups, drivers, maintenances, - calendars, - computedAttributes, - commands, - notifications, - }); export { sessionActions } from './session'; @@ -34,9 +25,5 @@ export { geofencesActions } from './geofences'; export { groupsActions } from './groups'; export { driversActions } from './drivers'; export { maintenancesActions } from './maintenances'; -export { calendarsActions } from './calendars'; -export { computedAttributesActions } from './computedAttributes'; -export { commandsActions } from './commands'; -export { notificationsActions } from './notifications'; export default configureStore({ reducer }); -- cgit v1.2.3