diff --git a/frontend/src/components/RSVPForm.tsx b/frontend/src/components/RSVPForm.tsx index eea26e6..1c2b774 100644 --- a/frontend/src/components/RSVPForm.tsx +++ b/frontend/src/components/RSVPForm.tsx @@ -445,6 +445,25 @@ const RSVPForm: React.FC = () => { RSVP Form + + {event && ( + + + {event.title} + + {event.description && ( + + Info: {event.description} + + )} + + Date: {new Date(event.date).toLocaleString()} + + + Location: {event.location} + + + )} {error && ( @@ -652,22 +671,31 @@ const RSVPForm: React.FC = () => { )} - + + + +