From 14405e996f7bc70661c684c277143575ba1e4219 Mon Sep 17 00:00:00 2001 From: spacemeowx2 Date: Thu, 29 Feb 2024 18:20:32 +0800 Subject: [PATCH] feat: add Fresh Season 2024 --- src/VersionData.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/VersionData.ts b/src/VersionData.ts index 7dcb475..2cac5c1 100644 --- a/src/VersionData.ts +++ b/src/VersionData.ts @@ -42,6 +42,12 @@ export const SEASONS: Season[] = [ start: new Date("2023-12-01T00:00:00+00:00"), end: new Date("2024-03-01T00:00:00+00:00"), }, + { + id: "season202403", + name: "Fresh Season 2024", + start: new Date("2024-03-01T00:00:00+00:00"), + end: new Date("2024-06-01T00:00:00+00:00"), + }, ]; export const getSeason = (date: Date): Season | undefined => {