fix: sign-in always shows generic error message

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Dev Server 2026-03-12 17:16:46 +03:00
parent 6aa98de721
commit 2877320987
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ export function JwtSignInView() {
router.replace(returnTo);
} catch (error) {
console.error(error);
setErrorMsg(parseApiError(error, 'Неверный email или пароль'));
setErrorMsg('Неверный email или пароль');
}
});