summaryrefslogtreecommitdiff
path: root/src/store/configure-store.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/store/configure-store.js')
-rw-r--r--src/store/configure-store.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/store/configure-store.js b/src/store/configure-store.js
index 02faf073..29af25ab 100644
--- a/src/store/configure-store.js
+++ b/src/store/configure-store.js
@@ -29,7 +29,10 @@ export let store = undefined;
export default function configureStore() {
const configuredStore = createStore(
rootReducer,
- compose(persistState("auth"), applyMiddleware(...middlewares))
+ compose(
+ persistState("auth"),
+ applyMiddleware(...middlewares)
+ )
);
sagaMiddleware.run(rootSaga);
store = configuredStore;