diff --git a/frontend/src/components/RSVPForm.tsx b/frontend/src/components/RSVPForm.tsx
index 82f43d2..3ed56d5 100644
--- a/frontend/src/components/RSVPForm.tsx
+++ b/frontend/src/components/RSVPForm.tsx
@@ -469,23 +469,18 @@ const RSVPForm: React.FC = () => {
helperText={formData.guest_count < 1 ? "Number of guests must be at least 1" : ""}
/>
-
-
- Guest Names
-
- {Array.from({ length: formData.guest_count }).map((_, index) => (
-
- ))}
-
+ {Array.from({ length: formData.guest_count }).map((_, index) => (
+
+ ))}
>
)}