diff --git a/apps/web-client/src/app/(auth)/forgot-password/page.tsx b/apps/web-client/src/app/(auth)/forgot-password/page.tsx index e1762aa5..ab86ff6e 100644 --- a/apps/web-client/src/app/(auth)/forgot-password/page.tsx +++ b/apps/web-client/src/app/(auth)/forgot-password/page.tsx @@ -8,7 +8,6 @@ import { useState } from 'react'; import { authApi } from '@/services/api/auth.api'; import { Button } from '@/features/shared/components/ui/button'; import { Input } from '@/features/shared/components/ui/input'; -import { Card, CardHeader, CardTitle, CardDescription, CardContent, CardFooter } from '@/features/shared/components/ui/card'; import { useTranslations } from 'next-intl'; import { AuthControls } from '@/features/shared/components/layout/auth-controls'; @@ -66,7 +65,6 @@ export default function ForgotPasswordPage() { const { register, handleSubmit, - watch, setValue, formState: { errors, isSubmitting }, } = useForm({ diff --git a/apps/web-client/src/app/(auth)/login/page.tsx b/apps/web-client/src/app/(auth)/login/page.tsx index 2453be8f..b9188cff 100644 --- a/apps/web-client/src/app/(auth)/login/page.tsx +++ b/apps/web-client/src/app/(auth)/login/page.tsx @@ -9,7 +9,6 @@ import { useState } from 'react'; import { useAuthStore } from '@/stores/auth-store'; import { Button } from '@/features/shared/components/ui/button'; import { Input } from '@/features/shared/components/ui/input'; -import { Card, CardHeader, CardTitle, CardDescription, CardContent, CardFooter } from '@/features/shared/components/ui/card'; import { useTranslations } from 'next-intl'; import { AuthControls } from '@/features/shared/components/layout/auth-controls'; @@ -73,7 +72,6 @@ export default function LoginPage() { const { register, handleSubmit, - watch, setValue, formState: { errors, isSubmitting }, } = useForm({