From 1a7af2560617c26d715361166f743d111972571d Mon Sep 17 00:00:00 2001 From: Andre Padez Date: Tue, 17 Feb 2026 17:02:31 +0000 Subject: [PATCH] refactored Authentication --- .../officer-web/Screens/Authentication/LandingPage/Login.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/apps/officer-web/Screens/Authentication/LandingPage/Login.tsx b/src/apps/officer-web/Screens/Authentication/LandingPage/Login.tsx index bacc31c7..7e03455c 100644 --- a/src/apps/officer-web/Screens/Authentication/LandingPage/Login.tsx +++ b/src/apps/officer-web/Screens/Authentication/LandingPage/Login.tsx @@ -10,7 +10,6 @@ import { useForm } from 'hooks/useForm'; import { useAuth } from 'hooks/useAuth'; export function Login() { - const navigate = useNavigate(); const [isSubmitting, setIsSubmitting] = useState(false); const { state, formRef, update, isValid } = useForm({}, validateForm); const { signin } = useAuth();