From 970e9eb6a4fb060df259c89c8fb23c2df8abac7a Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Thu, 4 Jul 2024 12:28:00 +0300 Subject: [PATCH] Fix "select active rosters" showing for old finish tournaments --- app/features/tournament-bracket/components/StartedMatch.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/features/tournament-bracket/components/StartedMatch.tsx b/app/features/tournament-bracket/components/StartedMatch.tsx index 9b99379c9..3bb7b5e60 100644 --- a/app/features/tournament-bracket/components/StartedMatch.tsx +++ b/app/features/tournament-bracket/components/StartedMatch.tsx @@ -284,6 +284,8 @@ function FancyStageBanner({ data.mapList.filter((m) => m.bannedByTournamentTeamId).length < 2; const waitingForActiveRosterSelectionFor = (() => { + if (data.results.length > 0) return null; + const teamOneMissing = !tournamentTeamToActiveRosterUserIds( teams[0], tournament.minMembersPerTeam,