This commit is contained in:
AlecM33
2023-08-16 14:10:40 -04:00
parent 531c093bbc
commit a986eb4c62

View File

@@ -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 {