refactor: remove unused vars

This commit is contained in:
Benjamin Akar
2022-06-04 16:40:53 +02:00
parent 8b0c0f1010
commit 5e3f950bd0

View File

@@ -14,12 +14,7 @@ interface WaitlistInputs {
}
export function HomeCTA() {
const {
register,
handleSubmit,
watch,
formState: { errors }
} = useForm<WaitlistInputs>();
const { register, handleSubmit } = useForm<WaitlistInputs>();
const [loading, setLoading] = useState(false);
const [showWaitlistInput, setShowWaitlistInput] = useState(false);