From 00ed9d64c59226845b7c3ca40fe01de143df5915 Mon Sep 17 00:00:00 2001 From: Clayton Wilson Date: Thu, 10 Oct 2019 14:13:04 -0400 Subject: [PATCH] store.js --- twistter-frontend/src/redux/store.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 ) );