diff --git a/twistter-frontend/src/redux/store.js b/twistter-frontend/src/redux/store.js index b79ebe6..93e0b8a 100644 --- a/twistter-frontend/src/redux/store.js +++ b/twistter-frontend/src/redux/store.js @@ -15,12 +15,13 @@ const reducers = combineReducers({ UI: uiReducer }); + const store = createStore( reducers, initialState, compose( applyMiddleware(...middleWare), - window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__() + window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__() // Can be removed after debugging is finished ) );