client/src/reducers/index.js
changeset 72 7634b424f426
parent 62 b2514a9bcd49
child 89 06f609adfbf8
--- a/client/src/reducers/index.js	Wed Jun 21 14:12:45 2017 +0200
+++ b/client/src/reducers/index.js	Thu Jun 22 10:47:10 2017 +0200
@@ -5,6 +5,7 @@
 import notes from './notesReducer';
 import { sessions } from './sessionsReducer';
 import { isAuthenticated, currentUser, login, token } from './authReducer';
+import { autoSubmit } from './miscReducer';
 
 const rootReducer = combineReducers({
   sessions,
@@ -14,6 +15,7 @@
   login,
   token,
   router: routerReducer,
+  autoSubmit
 });
 
 export default rootReducer;