From 8d5af8f1d8365c1acf4389e29cab593743bb6043 Mon Sep 17 00:00:00 2001 From: Shinsina Date: Tue, 18 Jun 2024 15:27:49 -0500 Subject: [PATCH] Set seasonStart and seasonEnd to appropriate values for 2024 Season 3 --- src/lib/utils/generate-season-weeks.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/utils/generate-season-weeks.ts b/src/lib/utils/generate-season-weeks.ts index 2e41da3..1207373 100644 --- a/src/lib/utils/generate-season-weeks.ts +++ b/src/lib/utils/generate-season-weeks.ts @@ -5,8 +5,8 @@ export default ({ }: { seasons: Array<{ schedules: Array<{ start_date: string }> }>; }) => { - const seasonStart = Date.UTC(2024, 2, 12, 0, 0, 0, 0); - const seasonEnd = Date.UTC(2024, 4, 28, 0, 0, 0, 0); + const seasonStart = Date.UTC(2024, 5, 11, 0, 0, 0, 0); + const seasonEnd = Date.UTC(2024, 7, 28, 0, 0, 0, 0); const startDates = seasons.reduce( ( set: Set,