verifyCredentials: do alert on failure

update-emoji-mart
Alex Gleason 2022-07-08 14:48:06 -05:00
rodzic 3fbc912dae
commit da9eaf2b82
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

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