Browse Source

Fix spacing in game explanation

Kirk Trombley 5 years ago
parent
commit
bb491480d1
1 changed files with 2 additions and 2 deletions
  1. 2 2
      client/src/components/screens/Lobby/Lobby.jsx

+ 2 - 2
client/src/components/screens/Lobby/Lobby.jsx

@@ -23,14 +23,14 @@ const GameInfo = () => {
       break;
     case NORMAL: // fall-through
     default:
-      timeExplanation = `${rounds !== 1 ? ", each" : ""}with a ${ms(timer * 1000)} time limit`;
+      timeExplanation = `${rounds !== 1 ? ", each" : ""} with a ${ms(timer * 1000)} time limit`;
       break;
   }
 
   return (
     <>
       <span className={styles.label}>
-        Game will run for {rounds} round{rounds !== 1 && 's'} {timeExplanation}
+        Game will run for {rounds} round{rounds !== 1 && 's'}{timeExplanation}
       </span>
       {onlyAmerica && (
         <span className={styles.label}>This game will only use locations within the United States of America</span>