Add ability to delete all leaderboard

This commit is contained in:
2024-02-19 08:46:05 +01:00
parent 9426b8499c
commit ffa6468b70
5 changed files with 161 additions and 22 deletions
+7
View File
@@ -44,3 +44,10 @@ export const saveToLocalStorage = async (time: string, difficulty: Difficulty, g
await store.setItem(`${difficulty}:${gridSize}`, leaderboard);
};
export const getDifficultyLabel = (difficulty: Difficulty): string => {
if (difficulty == 'beginner') return 'Débutant';
if (difficulty == 'intermediate') return 'Intermédiaire';
if (difficulty == 'expert') return 'Expert';
return difficulty;
};