diff options
Diffstat (limited to 'frontend/src/store.js')
-rw-r--r-- | frontend/src/store.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/store.js b/frontend/src/store.js index 9c0be13a..5c958afc 100644 --- a/frontend/src/store.js +++ b/frontend/src/store.js @@ -24,7 +24,7 @@ export function configureStore(initialState: Object = {}) { const store = createStore(createReducer(), fromJS(initialState), composeEnhancers(...enhancers)); - sagaMiddleware.run(rootSaga, history); + sagaMiddleware.run(rootSaga); return { store, |