diff --git a/.stylelintignore b/.stylelintignore new file mode 100644 index 0000000..e493205 --- /dev/null +++ b/.stylelintignore @@ -0,0 +1 @@ +app/globals.css diff --git a/app/(auth)/login/page.tsx b/app/(auth)/login/page.tsx index 149d815..04fbae2 100644 --- a/app/(auth)/login/page.tsx +++ b/app/(auth)/login/page.tsx @@ -1,6 +1,6 @@ 'use client' -import Layout from '@/components/layout/index' +import Layout from '@/components/layout' import { useAuthForm } from '@/hooks/useAuthForm' import { useFormField } from '@/hooks/useFormField' import styles from '~/styles/Auth.module.css' @@ -23,21 +23,13 @@ const Login = () => { passwordError, } = useAuthForm('login', formValues) - const handleFormSubmit = (e: React.FormEvent) => { - handleSubmit(e) - } - return (
Войдите в свой аккаунт