Skip to content

Commit

Permalink
Fix setteam unassigned
Browse files Browse the repository at this point in the history
  • Loading branch information
Tripperful committed May 10, 2024
1 parent b87d123 commit 72c361e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export const SetPlayerTeam: FC<{ steamId: string }> = ({ steamId }) => {
{availableTeams.map((t) => (
<SetTeamButton
key={t.index}
teamIndex={t.index}
teamIndex={t.joinIndex}
onClick={() => setTeam(t.index)}
>
{t.icon}
Expand Down

0 comments on commit 72c361e

Please sign in to comment.