From a6709f02c5ddb92dd153c755420870d4004162ef Mon Sep 17 00:00:00 2001 From: Ryderjj89 Date: Mon, 2 Jun 2025 19:25:18 -0400 Subject: [PATCH] Updated send event conclusion to make sure it's set to true by default --- frontend/src/components/RSVPForm.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/RSVPForm.tsx b/frontend/src/components/RSVPForm.tsx index 8d134f1..b8a8414 100644 --- a/frontend/src/components/RSVPForm.tsx +++ b/frontend/src/components/RSVPForm.tsx @@ -293,7 +293,8 @@ const RSVPForm: React.FC = () => { items_bringing: formData.items_bringing, other_items: splitOtherItems, send_email_confirmation: true, // Always send email confirmation now - email_address: formData.email_address.trim() + email_address: formData.email_address.trim(), + send_event_conclusion_email: true, // Always send true for conclusion email }; const response = await axios.post(`/api/events/${slug}/rsvp`, submissionData);