From c8083adb8a754c3d76cf4bc9f9fa3898d3c73230 Mon Sep 17 00:00:00 2001
From: "gpt-engineer-app[bot]"
<159125892+gpt-engineer-app[bot]@users.noreply.github.com>
Date: Mon, 23 Jun 2025 03:09:57 +0000
Subject: [PATCH] Fix: Resolve syntax error in ContactForm.tsx
Corrected a syntax error in ContactForm.tsx that was causing a build error.
---
src/components/help/ContactForm.tsx | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/src/components/help/ContactForm.tsx b/src/components/help/ContactForm.tsx
index 2777764..f20c1cb 100644
--- a/src/components/help/ContactForm.tsx
+++ b/src/components/help/ContactForm.tsx
@@ -141,4 +141,12 @@ const ContactForm = ({ onBack }: ContactFormProps) => {
+
+ );
+};
+
+export default ContactForm;