logIn: rethrow 403 for non-waitlisted account

environments/review-login-fail-d7fgi4/deployments/503
Alex Gleason 2022-07-08 14:38:36 -05:00
rodzic ef6608341f
commit 3fbc912dae
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7211D1F99744FBB7
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -181,7 +181,7 @@ export const verifyCredentials = (token: string, accountUrl?: string) => {
} else {
if (getState().me === null) dispatch(fetchMeFail(error));
dispatch({ type: VERIFY_CREDENTIALS_FAIL, token, error, skipAlert: true });
return error;
throw error;
}
});
};