diff options
Diffstat (limited to 'src/content')
-rw-r--r-- | src/content/index.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/content/index.js b/src/content/index.js index ea08982..38ad837 100644 --- a/src/content/index.js +++ b/src/content/index.js @@ -6,11 +6,11 @@ import * as followActions from '../actions/follow'; import { createStore } from '../store'; import ContentInputComponent from '../components/content-input'; import FollowComponent from '../components/follow'; -import followReducer from '../reducers/follow'; +import reducers from '../reducers'; import operations from '../operations'; import messages from './messages'; -const store = createStore(followReducer); +const store = createStore(reducers); const followComponent = new FollowComponent(window.document.body, store); store.subscribe(() => { try { |