From 80e144ab13dca4a8671a08120f4b446d28f5701f Mon Sep 17 00:00:00 2001 From: Ryderjj89 Date: Sun, 4 May 2025 17:28:06 -0400 Subject: [PATCH] fix: RSVP.other_items should be string, not string[] --- frontend/src/components/EventView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/EventView.tsx b/frontend/src/components/EventView.tsx index 68b6228..0cf733c 100644 --- a/frontend/src/components/EventView.tsx +++ b/frontend/src/components/EventView.tsx @@ -24,7 +24,7 @@ interface RSVP { guest_count: number; guest_names: string[] | string; items_bringing: string[] | string; - other_items?: string[]; + other_items?: string; } interface Event {