From fed489f092a57aff3c311be2d2decdfd6c5da8e8 Mon Sep 17 00:00:00 2001 From: Tom <20648924+moT01@users.noreply.github.com> Date: Mon, 25 Aug 2025 09:42:56 -0500 Subject: [PATCH] chore(tools): update daily challenge seed script (#61721) --- tools/daily-challenges/seed-daily-challenges.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/daily-challenges/seed-daily-challenges.ts b/tools/daily-challenges/seed-daily-challenges.ts index a865225900d..e46db10cade 100644 --- a/tools/daily-challenges/seed-daily-challenges.ts +++ b/tools/daily-challenges/seed-daily-challenges.ts @@ -18,14 +18,14 @@ const EXPECTED_CHALLENGE_COUNT = 24; // Date to set for the first challenge, second challenge will be one day later, etc... // **DO NOT CHANGE THIS AFTER RELEASE (if seeding production - okay for local dev)** const year = 2025; -const monthIndex = 6; // 0-indexed -> 5 = June -const day = 15; +const monthIndex = 7; // 0-indexed -> 5 = June +const day = 11; const START_DATE = new Date(Date.UTC(year, monthIndex, day)); const ONE_DAY_IN_MS = 24 * 60 * 60 * 1000; // Sanity check to make sure the start date hasn't unintentionally changed // **IT SHOULD NOT CHANGE AFTER RELEASE** -const startDateString = '2025-07-15T00:00:00.000Z'; +const startDateString = '2025-08-11T00:00:00.000Z'; if (START_DATE.toISOString() !== startDateString) { throw new Error( `It appears the start date has changed from "${startDateString}".