Skip to content

Commit

Permalink
Fix feature flag
Browse files Browse the repository at this point in the history
is accidentally enabled with the value set to false :)
  • Loading branch information
SapiensAnatis committed Sep 1, 2024
1 parent 46100bc commit d12f2ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Website/src/routes/(main)/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit d12f2ac

Please sign in to comment.