Update auth.js to fix #97 login failure

merge-requests/37/head
Curtis 2020-05-29 02:17:38 +00:00
rodzic c5886508eb
commit dbee88f795
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

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