From 117eeaf7479ff67c138b5dac9e53535e21bf2310 Mon Sep 17 00:00:00 2001 From: Patrick Browne Date: Mon, 2 Sep 2024 10:23:20 +0200 Subject: [PATCH] Revert "feat: Put default period to 2024" 436673e414f56fe0f6446c9a4e0a01893e70453d --- src/env/schema.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/env/schema.js b/src/env/schema.js index b07bb0d9..0dd8b9d3 100644 --- a/src/env/schema.js +++ b/src/env/schema.js @@ -3,7 +3,7 @@ const { z } = require("zod"); export const buildSchema = z.object({ // Used to display a mention of the current deployment in development mode DEPLOYMENT: z.string().optional(), - CURRENT_PERIOD: z.string().default("2024"), + CURRENT_PERIOD: z.string().default("2025"), FIRST_PERIOD: z.string().default("2009"), VERSION: z.string().optional(), });