Skip to content

Commit

Permalink
Prettier and eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
hopperelec committed Mar 29, 2024
1 parent b3be615 commit be2b6af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/PlayerLabel.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@
.current-user {
color: blue;
}
</style>
</style>
2 changes: 1 addition & 1 deletion src/routes/game/[gameId=id]/lobby/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
</button>
</div>
<ul>
{#each Object.entries(players) as [id, player]}
{#each Object.values(players) as player}
<li>
<KickablePlayerLabel
currentUserId={data.userId}
Expand Down

0 comments on commit be2b6af

Please sign in to comment.