diff --git a/app/features/tournament-bracket/components/StartedMatch.tsx b/app/features/tournament-bracket/components/StartedMatch.tsx index cfffe1fe2..3421acaba 100644 --- a/app/features/tournament-bracket/components/StartedMatch.tsx +++ b/app/features/tournament-bracket/components/StartedMatch.tsx @@ -612,7 +612,10 @@ function StartedMatchTabs({ } const oneMonthAgo = new Date(); oneMonthAgo.setMonth(oneMonthAgo.getMonth() - 1); - if (tournament.ctx.startTime < oneMonthAgo) { + if ( + tournament.ctx.startTime < oneMonthAgo && + !tournament.isLeagueDivision + ) { return false; }