rewrite: minor changes
This commit is contained in:
@@ -46,8 +46,8 @@ export const saveToLocalStorage = async (time: string, difficulty: Difficulty, g
|
||||
};
|
||||
|
||||
export const getDifficultyLabel = (difficulty: Difficulty): string => {
|
||||
if (difficulty == 'beginner') return 'Débutant';
|
||||
if (difficulty == 'intermediate') return 'Intermédiaire';
|
||||
if (difficulty == 'expert') return 'Expert';
|
||||
if (difficulty === 'beginner') return 'Débutant';
|
||||
if (difficulty === 'intermediate') return 'Intermédiaire';
|
||||
if (difficulty === 'expert') return 'Expert';
|
||||
return difficulty;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user