Skip to content
This repository has been archived by the owner on Jul 24, 2023. It is now read-only.

Commit

Permalink
root reducer fix
Browse files Browse the repository at this point in the history
  • Loading branch information
martyan committed Aug 2, 2020
1 parent f2446d4 commit ba3203a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/lib/reducer.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import auth, { initialState as initialStateAuth } from './auth/reducer'
import todo, { initialState as initialStateTodo } from './todo/reducer'

export const initialState = {
...initialStateAuth,
...initialStateTodo
auth: initialStateAuth,
todo: initialStateTodo
}

export default combineReducers({
Expand Down

0 comments on commit ba3203a

Please sign in to comment.