Update auth.js to fix #97 login failure

merge-requests/37/head
Curtis 4 years ago
parent c5886508eb
commit dbee88f795

@ -114,7 +114,7 @@ export function refreshUserToken() {
export function logIn(username, password) {
return (dispatch, getState) => {
return dispatch(initAuthApp()).then(() => {
return dispatch(createAppAndToken()).then(() => {
return dispatch(createUserToken(username, password));
}).catch(error => {
dispatch(showAlert('Login failed.', 'Invalid username or password.'));

Loading…
Cancel
Save