From 14622b310f170daa7d720da85c65a68dc6784702 Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Sun, 28 Feb 2021 21:22:48 -0600 Subject: fix constant cache --- src/database.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/database.ts') diff --git a/src/database.ts b/src/database.ts index e1fec7e..d3e2291 100644 --- a/src/database.ts +++ b/src/database.ts @@ -78,7 +78,7 @@ function getMemberLeaderboardAttributes(member: CleanMember) { } -export async function fetchAllLeaderboardsCategoriezed(): Promise<{ [ category: string ]: string[] }> { +export async function fetchAllLeaderboardsCategorized(): Promise<{ [ category: string ]: string[] }> { const memberLeaderboardAttributes = await fetchAllMemberLeaderboardAttributes() const categorizedLeaderboards: { [ category: string ]: string[] } = {} for (const leaderboard of memberLeaderboardAttributes) { -- cgit