From 20bea3c19bfa40669fcfe0f40044bd0d671a3c51 Mon Sep 17 00:00:00 2001 From: Pico2x Date: Mon, 22 Aug 2022 11:35:42 +0100 Subject: [PATCH] Toggle monthly leaderboards I didn't get to enabling monthly leaderboards after my work trial was over (I enabled daily/weekly/alltime). The cache has been filled out for a while now, this toggles it on. --- web/pages/leaderboards.tsx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/web/pages/leaderboards.tsx b/web/pages/leaderboards.tsx index 45c484c4..c882d31c 100644 --- a/web/pages/leaderboards.tsx +++ b/web/pages/leaderboards.tsx @@ -138,11 +138,10 @@ export default function Leaderboards(_props: { title: 'All Time', content: LeaderboardWithPeriod('allTime'), }, - // TODO: Enable this near the end of July! - // { - // title: 'Monthly', - // content: LeaderboardWithPeriod('monthly'), - // }, + { + title: 'Monthly', + content: LeaderboardWithPeriod('monthly'), + }, { title: 'Weekly', content: LeaderboardWithPeriod('weekly'),