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 2a1a312 commit 7372550Copy full SHA for 7372550
src/components/TranslationLeaderboard.tsx
@@ -203,7 +203,7 @@ const TranslationLeaderboard: React.FC<IProps> = ({
203
</Flex>
204
205
{leaderboardData[dateRangeType]
206
- .slice(0, filterAmount) // This replaces the second filter that limits the amount
+ .slice(0, filterAmount)
207
.map((item, idx) => {
208
const { user, languages } = item
209
const sortedLanguages = reverse(
@@ -218,7 +218,6 @@ const TranslationLeaderboard: React.FC<IProps> = ({
218
} else if (idx === 2) {
219
emoji = ":3rd_place_medal:"
220
}
221
- // ... Rest of your map function that generates JSX for each item
222
return (
223
<Flex
224
textDecoration="none"
0 commit comments