diff --git a/app/features/core/streams/streams.server.ts b/app/features/core/streams/streams.server.ts index c4a3b0b90..5ee659a79 100644 --- a/app/features/core/streams/streams.server.ts +++ b/app/features/core/streams/streams.server.ts @@ -30,6 +30,8 @@ export function getLiveTournamentStreams(): SidebarStream[] { const streams: SidebarStream[] = []; for (const tournament of RunningTournaments.all) { + if (tournament.isLeagueDivision) continue; + streams.push({ id: `tournament-${tournament.ctx.id}`, name: tournament.ctx.name,