From f17eacc574843839db856c59794d0a5bb532aa4b Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Mon, 31 Mar 2025 09:07:09 +0300 Subject: [PATCH] Fix LUTI chat disappearing --- app/features/tournament-bracket/components/StartedMatch.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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; }