summaryrefslogtreecommitdiff
path: root/frontend/src/store.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/store.js')
-rw-r--r--frontend/src/store.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/frontend/src/store.js b/frontend/src/store.js
index 4bd22184..a5d9a34a 100644
--- a/frontend/src/store.js
+++ b/frontend/src/store.js
@@ -21,7 +21,11 @@ export default function configureStore(initialState = {}) {
? window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__
: compose;
- const store = createStore(createReducer(), Immutable.from(initialState), composeEnhancers(...enhancers));
+ const store = createStore(
+ createReducer(),
+ Immutable.from(initialState),
+ composeEnhancers(...enhancers)
+ );
sagaMiddleware.run(rootSaga, browserHistory);
bgstack15