diff --git a/app/lib/definitions.ts b/app/lib/definitions.ts index 4a4c652..fb05a59 100644 --- a/app/lib/definitions.ts +++ b/app/lib/definitions.ts @@ -22,6 +22,7 @@ export type Guest = { id: string; name: string; group_name?: string; + color?: string; status?: 'Considered' | 'Invited' | 'Confirmed' | 'Declined' | 'Tentative'; } diff --git a/app/ui/components/table.tsx b/app/ui/components/table.tsx index 55a9c64..9c1098d 100644 --- a/app/ui/components/table.tsx +++ b/app/ui/components/table.tsx @@ -5,7 +5,10 @@ import { Guest } from "@/app/lib/definitions"; function Dish({ guest, rotation }: { guest: Guest, rotation?: number }) { rotation = rotation || 0 return ( -
+
{guest.name}
)