aboutsummaryrefslogtreecommitdiff
path: root/src/content/reducers/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/content/reducers/index.js')
-rw-r--r--src/content/reducers/index.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/content/reducers/index.js b/src/content/reducers/index.js
index ae4a845..17c0429 100644
--- a/src/content/reducers/index.js
+++ b/src/content/reducers/index.js
@@ -1,14 +1,14 @@
import addonReducer from './addon';
import settingReducer from './setting';
import inputReducer from './input';
-import followReducer from './follow';
+import followControllerReducer from './follow-controller';
// Make setting reducer instead of re-use
const defaultState = {
addon: addonReducer(undefined, {}),
setting: settingReducer(undefined, {}),
input: inputReducer(undefined, {}),
- follow: followReducer(undefined, {}),
+ followController: followControllerReducer(undefined, {}),
};
export default function reducer(state = defaultState, action = {}) {
@@ -16,6 +16,6 @@ export default function reducer(state = defaultState, action = {}) {
addon: addonReducer(state.addon, action),
setting: settingReducer(state.setting, action),
input: inputReducer(state.input, action),
- follow: followReducer(state.follow, action),
+ followController: followControllerReducer(state.followController, action),
});
}