From 46e9b83e0b3a242a937783466f228fda704cd49b Mon Sep 17 00:00:00 2001 From: Peter Date: Tue, 11 Jun 2024 13:57:25 -0500 Subject: [PATCH] Start season 10 on July 1 --- src/services/utilities.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/utilities.ts b/src/services/utilities.ts index 5028584..02055e5 100644 --- a/src/services/utilities.ts +++ b/src/services/utilities.ts @@ -15,7 +15,7 @@ export const WEEKS_PER_SEASON = 18 export const GAMES_PER_SEASON = GAMES_PER_WEEK * WEEKS_PER_SEASON // TODO: Annually update this start date and holidays with two week series or get it from the DB -export const SEASON_START_DATE: dayjs.Dayjs = dayjs('01-15-2024', 'MM/DD/YYYY') +export const SEASON_START_DATE: dayjs.Dayjs = dayjs('07-01-2024', 'MM/DD/YYYY') export const THANKSGIVING: dayjs.Dayjs = dayjs('11-28-2024', 'MM/DD/YYYY') export const CHRISTMAS: dayjs.Dayjs = dayjs('12-25-2024', 'MM/DD/YYYY')