Fix registration form workflow
This commit is contained in:
parent
eae309e150
commit
f24422d520
2 changed files with 2 additions and 2 deletions
|
@ -106,7 +106,7 @@ export function createAccount(params) {
|
|||
return (dispatch, getState) => {
|
||||
dispatch({ type: ACCOUNT_CREATE_REQUEST, params });
|
||||
return api(getState, 'app').post('/api/v1/accounts', params).then(({ data: token }) => {
|
||||
dispatch({ type: ACCOUNT_CREATE_SUCCESS, params, token });
|
||||
return dispatch({ type: ACCOUNT_CREATE_SUCCESS, params, token });
|
||||
}).catch(error => {
|
||||
dispatch({ type: ACCOUNT_CREATE_FAIL, error, params });
|
||||
throw error;
|
||||
|
|
|
@ -212,7 +212,7 @@ export function register(params) {
|
|||
return dispatch(createAppAndToken()).then(() => {
|
||||
return dispatch(createAccount(params));
|
||||
}).then(token => {
|
||||
dispatch(authLoggedIn(token));
|
||||
return dispatch(authLoggedIn(token));
|
||||
});
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue