VERIFY_CREDENTIALS_FAIL: skipAlert

merge-requests/794/head
Alex Gleason 2021-10-19 09:32:15 -05:00
rodzic 7449c517a7
commit 5f183d38b1
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

@ -152,7 +152,7 @@ export function verifyCredentials(token, accountUrl) {
return account;
}).catch(error => {
if (getState().get('me') === null) dispatch(fetchMeFail(error));
dispatch({ type: VERIFY_CREDENTIALS_FAIL, token, error });
dispatch({ type: VERIFY_CREDENTIALS_FAIL, token, error, skipAlert: true });
});
};
}