Skip to content

Commit

Permalink
Remove '???' in custom Achievement
Browse files Browse the repository at this point in the history
  • Loading branch information
juunini committed Feb 10, 2024
1 parent c0a2aa8 commit 3c764dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/frontend/src/pages/user/customAchievements.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export function customAchievementTitle(achievement?: string): string {
case 'happyNewYear2024':
return 'HAPPY NEW YEAR!';
}
return '???';
return '';
}

export function customAchievementDescription(achievement: string): string {
Expand All @@ -83,7 +83,7 @@ export function customAchievementDescription(achievement: string): string {
case 'happyNewYear2024':
return '2024λ…„ 1μ›” 1일에 μ ‘μ†ν–ˆμŠ΅λ‹ˆλ‹€.';
}
return '???';
return '';
}

export function customAchievementFlavor(achievement: string): string {
Expand Down

0 comments on commit 3c764dd

Please sign in to comment.