diff options
Diffstat (limited to 'ui/app/reducers.js')
-rw-r--r-- | ui/app/reducers.js | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/ui/app/reducers.js b/ui/app/reducers.js index 0f2ad4c21..17f94f230 100644 --- a/ui/app/reducers.js +++ b/ui/app/reducers.js @@ -1,5 +1,3 @@ -const combineReducers = require('redux').combineReducers -const actions = require('./actions') const extend = require('xtend') // @@ -11,8 +9,7 @@ const reduceApp = require('./reducers/app') module.exports = rootReducer -function rootReducer(state, action) { - +function rootReducer (state, action) { // clone state = extend(state) @@ -34,8 +31,6 @@ function rootReducer(state, action) { state.appState = reduceApp(state, action) - return state - } |