Fix LUTI chat disappearing
Some checks are pending
Tests and checks on push / run-checks-and-tests (push) Waiting to run
Updates translation progress / update-translation-progress-issue (push) Waiting to run

This commit is contained in:
Kalle
2025-03-31 09:07:09 +03:00
parent dc4a25a4b7
commit f17eacc574

View File

@@ -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;
}