From 70e90a4cfd362bee8a21e16556a93839fb6fd6d4 Mon Sep 17 00:00:00 2001 From: Julia Kang Date: Fri, 29 Sep 2023 13:26:15 -0700 Subject: [PATCH] change type of club time to fix build error --- shared/data/clubs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/data/clubs.ts b/shared/data/clubs.ts index 4c7e3d6..c4e43bb 100644 --- a/shared/data/clubs.ts +++ b/shared/data/clubs.ts @@ -1,6 +1,6 @@ export type Club = { new: boolean, name: string, tier: 1 | 2 | 3, desc: string, - day: string, time: "Lunch" | "After School", room: string, + day: string, time: string, room: string, zoom?: string, video?: string, signup?: string, prez: string, advisor: string, email: string, coadvisor?: string, coemail?: string; }