fix team avatars

This commit is contained in:
yohlo
2026-03-01 20:20:24 -06:00
parent 1ce8a6a982
commit 9571980898
8 changed files with 16 additions and 8 deletions

View File

@@ -106,6 +106,7 @@ function RouteComponent() {
showControls
tournamentId={tournament.id}
hasKnockoutBracket={knockoutBracketPopulated}
isRegional={tournament.regional}
/>
<Divider />
<div>
@@ -120,6 +121,7 @@ function RouteComponent() {
showControls
tournamentId={tournament.id}
hasKnockoutBracket={knockoutBracketPopulated}
isRegional={tournament.regional}
/>
) : (
<BracketView bracket={bracket} showControls groupConfig={tournament.group_config} />

View File

@@ -39,6 +39,7 @@ function RouteComponent() {
<GroupStageView
groups={tournament.groups || []}
matches={tournament.matches || []}
isRegional={tournament.regional}
/>
</Container>
);