Skip to content

Commit

Permalink
fix double dot
Browse files Browse the repository at this point in the history
  • Loading branch information
Nertsal committed Jun 1, 2024
1 parent d5a0b2c commit a57155a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/widget/leaderboard.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ impl LeaderboardWidget {
&self.assets,
board
.my_position
.map_or("???".into(), |rank| format!("{}.", rank + 1)),
.map_or("???".into(), |rank| format!("{}", rank + 1)),
score.clone(),
false,
);
Expand Down

0 comments on commit a57155a

Please sign in to comment.