We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc58086 commit 5406117Copy full SHA for 5406117
src/commands/activity/rank.ts
@@ -135,7 +135,7 @@ async function computeRankForExpression(
135
const userCount = result.count;
136
const userPercentage = ((userCount / totalCount) * 100).toFixed(2);
137
138
- const rankIcon = userRank === 1 ? "- 1." : userRank === 2 ? "- 🥈" : userRank === 3 ? "- 🥉" : `- ${userRank}.`;
+ const rankIcon = userRank === 1 ? "- 🥇" : userRank === 2 ? "- 🥈" : userRank === 3 ? "- 🥉" : `- ${userRank}.`;
139
return `${rankIcon} ${userName} (${userPercentage}%)`;
140
})
141
.join("\n");
0 commit comments