From 7572cfb0c3f950163a55596d829bcab15547aa0b Mon Sep 17 00:00:00 2001 From: Heidi Date: Wed, 17 Jun 2026 23:48:39 +0100 Subject: [PATCH] ai generated solutions to our ai generated problems --- frontend/src/App.jsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index d15ecc8..0ccd556 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -132,8 +132,7 @@ function gameParticipants(game) { } function displayTeamName(value) { - const name = String(value || '').trim() - return /^\d+$/.test(name) ? '' : name + return String(value || '').trim() } function ParticipantNames({ participants }) {