From d12f2acd6cc1f1a440f9a1dcd848aac4495977f5 Mon Sep 17 00:00:00 2001 From: Jay Malhotra Date: Sun, 1 Sep 2024 02:43:53 +0100 Subject: [PATCH] Fix feature flag is accidentally enabled with the value set to false :) --- Website/src/routes/(main)/routes.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Website/src/routes/(main)/routes.ts b/Website/src/routes/(main)/routes.ts index 294803212..769b02f8c 100644 --- a/Website/src/routes/(main)/routes.ts +++ b/Website/src/routes/(main)/routes.ts @@ -28,7 +28,7 @@ export const routeGroups: RouteGroup[] = [ { title: 'News', href: '/news/1', icon: Newspaper } ] }, - ...(PUBLIC_ENABLE_TIME_ATTACK + ...(PUBLIC_ENABLE_TIME_ATTACK === 'true' ? [ { title: 'Events',