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 }) {