Errors

Something went wrong

Generic auth UI fallback — e.g. forgot-password when API error is unmapped.

Something went wrong

Generic client fallback (auth.somethingWentWrong) when an auth API fails without a mapped message — e.g. forgot-password form. Also used as a broad error title in some UI shells.

Why this happens

Unexpected API response, template/mail issue not translated, or catch-all after resolveApiErrorFromJson returns null. Check Network for the real error body.

Diagnose and fix

1. Hard refresh; retry once.

2. DevTools → Network: read the JSON error and match a more specific Help article.

3. For forgot-password: confirm mail templates and outbound mail (Password reset email is disabled or missing, SMTP/Gmail).

4. Distinct from Server error (explicit 500 code) and Network error (fetch threw).

Related