diff --git a/app/features/tournament-bracket/routes/to.$id.matches.$mid.tsx b/app/features/tournament-bracket/routes/to.$id.matches.$mid.tsx index 67c57434e..e4f2e127f 100644 --- a/app/features/tournament-bracket/routes/to.$id.matches.$mid.tsx +++ b/app/features/tournament-bracket/routes/to.$id.matches.$mid.tsx @@ -589,7 +589,7 @@ function Rosters({ to={userPage(p)} className={clsx("stack horizontal sm", { [INACTIVE_PLAYER_CSS]: - teamOneParticipatedPlayers.length === 0 || + teamOneParticipatedPlayers.length > 0 && teamOneParticipatedPlayers.every( (participatedPlayer) => p.id !== participatedPlayer.id, @@ -634,7 +634,7 @@ function Rosters({ to={userPage(p)} className={clsx("stack horizontal sm", { [INACTIVE_PLAYER_CSS]: - teamTwoParticipatedPlayers.length === 0 || + teamTwoParticipatedPlayers.length > 0 && teamTwoParticipatedPlayers.every( (participatedPlayer) => p.id !== participatedPlayer.id,