Fix reCaptcha

This commit is contained in:
2025-06-29 00:58:25 +00:00
parent 057106b15b
commit 3af20b3766
2 changed files with 2 additions and 1 deletions

View File

@@ -183,7 +183,7 @@ const ContactFormSection = () => {
>
<ReCAPTCHA
sitekey={process.env.NEXT_PUBLIC_RECAPTCHA_SITE_KEY!}
onChange={(token) => setCaptchaToken(token || '')}
onChange={(token) => setCaptchaToken(token ?? '')}
/>
</motion.div>