feat: Add other_items field to RSVP edit form

This commit is contained in:
Starstrike
2025-05-01 18:30:18 -04:00
parent f91c8d7849
commit e50122951a
3 changed files with 24 additions and 17 deletions

View File

@@ -18,8 +18,8 @@ export interface Rsvp {
attending: string;
bringing_guests: string;
guest_count: number;
guest_names: string;
items_bringing: string[];
guest_names: string[] | string;
items_bringing: string[] | string;
other_items?: string;
created_at: string;
}