fix(ui): missing return in state
This commit is contained in:
parent
a961775bc3
commit
690bc47a1a
1 changed files with 1 additions and 1 deletions
|
|
@ -69,7 +69,7 @@ const reducer = (state = initialState, action = {}) => {
|
|||
case UPDATE_PASSWORD.SUCCESS:
|
||||
return state.set('passwordErrors', List());
|
||||
case SIGNUP.SUCCESS:
|
||||
state.set('account', Account(action.data.user)).set('onboarding', true);
|
||||
return state.set('account', Account(action.data.user)).set('onboarding', true);
|
||||
case REQUEST_RESET_PASSWORD.SUCCESS:
|
||||
break;
|
||||
case UPDATE_ACCOUNT.SUCCESS:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue