diff --git a/app/soapbox/actions/auth.ts b/app/soapbox/actions/auth.ts index e6ab20e9b..5a5468e7f 100644 --- a/app/soapbox/actions/auth.ts +++ b/app/soapbox/actions/auth.ts @@ -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; } }); };