diff --git a/client/app/stores/commentsStore.js b/client/app/stores/commentsStore.js index 5d1e60ac..d37b3ee6 100644 --- a/client/app/stores/commentsStore.js +++ b/client/app/stores/commentsStore.js @@ -5,11 +5,10 @@ import reducers from '../reducers'; import { initalStates } from '../reducers'; export default props => { - const initialComments = props; const { $$commentsState } = initalStates; const initialState = { $$commentsStore: $$commentsState.merge({ - $$comments: initialComments, + $$comments: props, }), };