From 71e57a024fc7e2f3c69d3bf4281b59c7b2950118 Mon Sep 17 00:00:00 2001 From: nknguyenhc <87511888+nknguyenhc@users.noreply.github.com> Date: Thu, 3 Oct 2024 20:44:15 +0800 Subject: [PATCH] Fix lint error --- frontend/src/pages/Login/Login.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/pages/Login/Login.tsx b/frontend/src/pages/Login/Login.tsx index d4c1196ed0..a8b9fac1ea 100644 --- a/frontend/src/pages/Login/Login.tsx +++ b/frontend/src/pages/Login/Login.tsx @@ -55,7 +55,7 @@ const Login = (): ReactElement => { if (email === "test@example.com" && password === "password") { setLoading(true); setTimeout(() => { - navigate("/"); + navigate("/"); }, 3000); } else { setLoginError("Invalid email or password.");