Skip to content

Commit 6cd3c64

Browse files
committed
Fix eslint plugin error
1 parent cd35765 commit 6cd3c64

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

client/app/stores/commentsStore.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,10 @@ import reducers from '../reducers';
55
import { initalStates } from '../reducers';
66

77
export default props => {
8-
const initialComments = props;
98
const { $$commentsState } = initalStates;
109
const initialState = {
1110
$$commentsStore: $$commentsState.merge({
12-
$$comments: initialComments,
11+
$$comments: props,
1312
}),
1413
};
1514

0 commit comments

Comments
 (0)