From ddf265059b85e4e85bc9875ece546c1fac72cea5 Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Sat, 27 Jun 2026 21:45:08 +0300 Subject: [PATCH] Different text on tournament admin page no teams vs. filter not matching --- app/features/tournament-admin/routes/to.$id.admin._index.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/features/tournament-admin/routes/to.$id.admin._index.tsx b/app/features/tournament-admin/routes/to.$id.admin._index.tsx index 5699be5ca..f52345c82 100644 --- a/app/features/tournament-admin/routes/to.$id.admin._index.tsx +++ b/app/features/tournament-admin/routes/to.$id.admin._index.tsx @@ -131,7 +131,9 @@ export default function TournamentAdminTeamsPage() { colSpan={maxRosterSize + (tournament.ctx.isFinalized ? 2 : 3)} className={styles.noResults} > - No registrations yet + {tournament.ctx.teams.length === 0 + ? "No registrations yet" + : "No registrations match your search"} ) : null}