From 6a7c2d3b3fcfe3723ba883dd39e04b4e263ccd12 Mon Sep 17 00:00:00 2001 From: Dipanshu Date: Thu, 11 Apr 2019 22:32:07 +0530 Subject: [PATCH] Socio V1.0 --- client/src/store.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/client/src/store.js b/client/src/store.js index 3203857..a9c761d 100644 --- a/client/src/store.js +++ b/client/src/store.js @@ -9,10 +9,7 @@ const middleware = [thunk]; const store = createStore( rootReducer, initialState, - compose( - applyMiddleware(...middleware), - window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__() - ) + compose(applyMiddleware(...middleware)) ); export default store;