diff options
Diffstat (limited to 'src/background/index.js')
-rw-r--r-- | src/background/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/background/index.js b/src/background/index.js index ab99d39..0c3adce 100644 --- a/src/background/index.js +++ b/src/background/index.js @@ -6,7 +6,7 @@ import commandReducer from '../reducers/command'; import inputReducers from '../reducers/input'; import * as store from '../store' -const emptyReducer = (state, action) => state; +const emptyReducer = (state) => state; const emptyStore = store.createStore(emptyReducer, (e) => { console.error('Vim-Vixen:', e); }); |