diff --git a/src/widgets/forms/SignInForm/SignInForm.tsx b/src/widgets/forms/SignInForm/SignInForm.tsx index bd08d1a..7f9c1e2 100644 --- a/src/widgets/forms/SignInForm/SignInForm.tsx +++ b/src/widgets/forms/SignInForm/SignInForm.tsx @@ -50,7 +50,7 @@ const SignInForm = () => { setLoader(false); if (res?.ok && !res.error) { - // router.push("/profile/personal"); + router.push("/profile/personal"); } else if ([400, 401, 404].includes(res?.status as number)) { setError("Неверный Email или Пароль"); } else {