Fix leaderboard formatting

This commit is contained in:
Aslan 2025-12-23 07:48:44 -05:00
parent 1f20a611da
commit 9cabbc8813

View file

@ -49,7 +49,7 @@ const onLeaderboard = (_text: string, roomId: string) => {
"", "",
`<h3>Leaderboard</h3> `<h3>Leaderboard</h3>
<ul> <ul>
${users.map(mapUsersToLeaderboard)} ${users.map(mapUsersToLeaderboard).join("")}
</ul>`, </ul>`,
); );
}; };