fix: RSVP.other_items should be string, not string[]

This commit is contained in:
Ryderjj89
2025-05-04 17:28:06 -04:00
parent eb65707565
commit 80e144ab13

View File

@@ -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 {