From 5e3f950bd0fdb961cae4932d4e2f53bb642153d0 Mon Sep 17 00:00:00 2001 From: Benjamin Akar Date: Sat, 4 Jun 2022 16:40:53 +0200 Subject: [PATCH] refactor: remove unused vars --- apps/landing/src/components/HomeCTA.tsx | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/apps/landing/src/components/HomeCTA.tsx b/apps/landing/src/components/HomeCTA.tsx index 2a6c79654..f7bb61e21 100644 --- a/apps/landing/src/components/HomeCTA.tsx +++ b/apps/landing/src/components/HomeCTA.tsx @@ -14,12 +14,7 @@ interface WaitlistInputs { } export function HomeCTA() { - const { - register, - handleSubmit, - watch, - formState: { errors } - } = useForm(); + const { register, handleSubmit } = useForm(); const [loading, setLoading] = useState(false); const [showWaitlistInput, setShowWaitlistInput] = useState(false);