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