This commit is contained in:
2026-02-01 16:56:36 -07:00
parent af6c09b7b3
commit f90070743b

View File

@@ -68,7 +68,9 @@ function AccountLoginForm ({ redirect }: { redirect: string | null }) {
} catch (e: any) {
if (e.response) {
alert(
'Failed to login, error: ' +
`Failed to ${
alreadyLoggedIn ? 'refresh ' : ''
}login, error: ` +
(e.response.data?.message ||
JSON.stringify(e.response.data))
)