diff --git a/app/features/tournament-bracket/components/Bracket/RoundRobin.tsx b/app/features/tournament-bracket/components/Bracket/RoundRobin.tsx index ab50dc514..09235b342 100644 --- a/app/features/tournament-bracket/components/Bracket/RoundRobin.tsx +++ b/app/features/tournament-bracket/components/Bracket/RoundRobin.tsx @@ -24,6 +24,8 @@ export function RoundRobinBracket({ bracket }: { bracket: BracketType }) { return matches.every( (match) => + !match.opponent1 || + !match.opponent2 || match.opponent1?.result === "win" || match.opponent2?.result === "win", );