From f6f09c4a8032bdb13eefed4763c90d71641e063f Mon Sep 17 00:00:00 2001 From: Sean Date: Fri, 25 Oct 2024 13:57:02 -0700 Subject: [PATCH] Make food items nullable in apiRequests.ts as well Mostly out of laIziness (idk if backend truly would enjoy receiving a null) but it's in line with Discord events --- src/lib/types/apiRequests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/types/apiRequests.ts b/src/lib/types/apiRequests.ts index 8e531b5b..a62efc8b 100644 --- a/src/lib/types/apiRequests.ts +++ b/src/lib/types/apiRequests.ts @@ -165,7 +165,7 @@ export interface OptionalEventProperties { requiresStaff?: boolean; staffPointBonus?: number; discordEvent: string | null; - foodItems?: string; + foodItems?: string | null; } export interface Event extends OptionalEventProperties {