diff --git a/app/components/tournament/EliminationBracketMatch.tsx b/app/components/tournament/EliminationBracketMatch.tsx index 3a27e92dc..424877898 100644 --- a/app/components/tournament/EliminationBracketMatch.tsx +++ b/app/components/tournament/EliminationBracketMatch.tsx @@ -30,8 +30,9 @@ export function EliminationBracketMatch({ const Container = ({ children }: { children: React.ReactNode }) => { const hasBothParticipants = (match.participants?.filter(Boolean).length ?? 0) > 1; + const atLeastOneStageReported = match.score?.some((s) => s > 0); - if (hasBothParticipants) + if (hasBothParticipants && atLeastOneStageReported) return (