From a986eb4c62e6a04d1b2eb21616eefe67a28bdf62 Mon Sep 17 00:00:00 2001 From: AlecM33 Date: Wed, 16 Aug 2023 14:10:40 -0400 Subject: [PATCH] lint --- client/src/modules/game_state/states/Lobby.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/modules/game_state/states/Lobby.js b/client/src/modules/game_state/states/Lobby.js index 2c87a95..61ed3c7 100644 --- a/client/src/modules/game_state/states/Lobby.js +++ b/client/src/modules/game_state/states/Lobby.js @@ -416,10 +416,10 @@ function getTimeString (gameState) { const hours = gameState.timerParams.hours; const minutes = gameState.timerParams.minutes; if (hours) { - timeString += hours + 'h ' + timeString += hours + 'h '; } if (minutes) { - timeString += minutes + 'm' + timeString += minutes + 'm'; } return timeString; } else {