Update auth.js to fix #97 login failure

This commit is contained in:
Curtis
2020-05-29 02:17:38 +00:00
parent c5886508eb
commit dbee88f795

View File

@ -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.'));