Skip to content

Commit 703cbdc

Browse files
committed
Fix mispelling
1 parent 97544c8 commit 703cbdc

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

client/app/bundles/comments/reducers/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ export default {
55
$$commentsStore: commentsReducer,
66
};
77

8-
export const initalStates = {
8+
export const initialStates = {
99
$$commentsState,
1010
};

client/app/bundles/comments/store/commentsStore.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ import { compose, createStore, applyMiddleware, combineReducers } from 'redux';
22
import thunkMiddleware from 'redux-thunk';
33
import loggerMiddleware from 'libs/middlewares/loggerMiddleware';
44
import reducers from '../reducers';
5-
import { initalStates } from '../reducers';
5+
import { initialStates } from '../reducers';
66

77
export default props => {
88
const initialComments = props.comments;
9-
const { $$commentsState } = initalStates;
9+
const { $$commentsState } = initialStates;
1010
const initialState = {
1111
$$commentsStore: $$commentsState.merge({
1212
$$comments: initialComments,

client/app/bundles/comments/store/routerCommentsStore.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ import thunkMiddleware from 'redux-thunk';
33
import loggerMiddleware from 'libs/middlewares/loggerMiddleware';
44
import reducers from '../reducers';
55
import { routerReducer } from 'react-router-redux';
6-
import { initalStates } from '../reducers';
6+
import { initialStates } from '../reducers';
77

88
export default props => {
99
const initialComments = props.comments;
10-
const { $$commentsState } = initalStates;
10+
const { $$commentsState } = initialStates;
1111
const initialState = {
1212
$$commentsStore: $$commentsState.merge({
1313
$$comments: initialComments,

0 commit comments

Comments
 (0)