diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-11-11 18:45:10 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-11-11 18:51:32 +0900 |
commit | fe8a9283172e43e29480c4293c34565859c04c32 (patch) | |
tree | d9160c76f4c3435b0859669f1254b12eb92d183f /src/content/reducers | |
parent | e3409b3aaea81eca6e10df0b1880067ddf4df961 (diff) |
remove unused actions and fix test
Diffstat (limited to 'src/content/reducers')
-rw-r--r-- | src/content/reducers/find.js | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/content/reducers/find.js b/src/content/reducers/find.js index f0bfbeb..eb43c37 100644 --- a/src/content/reducers/find.js +++ b/src/content/reducers/find.js @@ -1,21 +1,12 @@ import actions from 'content/actions'; const defaultState = { - enabled: false, keyword: '', found: false, }; export default function reducer(state = defaultState, action = {}) { switch (action.type) { - case actions.FIND_SHOW: - return Object.assign({}, state, { - enabled: true, - }); - case actions.FIND_HIDE: - return Object.assign({}, state, { - enabled: false, - }); case actions.FIND_SET_KEYWORD: return Object.assign({}, state, { keyword: action.keyword, |