From 3e9775af9967019c64be6926b5ef6e0fe3c0856d Mon Sep 17 00:00:00 2001 From: Manuel Bustillo Date: Wed, 13 Nov 2024 08:58:55 +0100 Subject: [PATCH] Make color optional in a group --- app/lib/definitions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/definitions.ts b/app/lib/definitions.ts index 3ea3fe1..572914b 100644 --- a/app/lib/definitions.ts +++ b/app/lib/definitions.ts @@ -47,7 +47,7 @@ export type Group = { guest_count: number; icon: string; children: Group[]; - color: string; + color?: string; attendance?: AttendanceSummary };