From df1430b57d1b8278db0dab753f0d2aa334792059 Mon Sep 17 00:00:00 2001 From: Nareshkumar Rao Date: Wed, 2 Apr 2025 22:28:29 +0200 Subject: [PATCH] fix? --- src/app/contact/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index c631416..c328afb 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -3,6 +3,6 @@ import ContactComponent from "./ContactComponent"; export default async function ContactPage() { - const recaptchaSiteKey = process.env.RECAPTCHA_SITE_KEY; + const recaptchaSiteKey = process.env["RECAPTCHA_SITE_KEY"]; return ; }