Skip to content

Commit

Permalink
fix: remove leading whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
rayhanadev authored Feb 16, 2025
1 parent 28e9a1f commit 675860d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/hack-night.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ export function cleanupHackNightImagesThread(client: Client) {

await channel.send({
content: `Our top contributors this week are:
${Array.from(contributors)
${Array.from(contributors)
.sort((a, b) => b[1] - a[1])
.slice(0, 5)
.map(([id, count], index) => `\n#${index + 1}: <@${id}> - ${count}`)
Expand Down

0 comments on commit 675860d

Please sign in to comment.