From 867233b1696de5985d7bcabe6375a7a00a4c3086 Mon Sep 17 00:00:00 2001 From: Anzhelo Dimitrov <32179794+AnzheloD@users.noreply.github.com> Date: Sun, 20 Nov 2022 23:52:28 +0200 Subject: [PATCH] 1113 Added border to button in login page (#1142) Removed unused variable, which causes warning --- src/components/auth/login/LoginForm.tsx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/components/auth/login/LoginForm.tsx b/src/components/auth/login/LoginForm.tsx index 03df6f7dc..7dd8e104a 100644 --- a/src/components/auth/login/LoginForm.tsx +++ b/src/components/auth/login/LoginForm.tsx @@ -63,9 +63,8 @@ export default function LoginForm({ initialValues = defaults }: LoginFormProps) setLoading(false) } } - const onGoogleLogin = () => { - const resp = signIn('google') - } + const onGoogleLogin = () => signIn('google') + return ( -