From 4dbd33c47b12b3e0bc4e79ef5e70f1b18e4edc98 Mon Sep 17 00:00:00 2001 From: Ajaezo Kingsley Date: Tue, 8 Aug 2023 04:18:12 +0100 Subject: [PATCH] ci: change of the leaderboard data from weekly to monthly --- leaderboard/src/features/Leaderboard/api.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/leaderboard/src/features/Leaderboard/api.tsx b/leaderboard/src/features/Leaderboard/api.tsx index 27467c0..88216f3 100644 --- a/leaderboard/src/features/Leaderboard/api.tsx +++ b/leaderboard/src/features/Leaderboard/api.tsx @@ -12,7 +12,7 @@ export const useFetchLeaderBoard = () => { const fetchLeaderBoard = async () => { try { const response = await axios.get( - `directory_items.json/?order=likes_received&period=weekly` + `directory_items.json/?order=likes_received&period=monthly` ); return response?.data; } catch (error) {