diff --git a/client/src/components/player.box.jsx b/client/src/components/player.box.jsx
index 6cace8a4..f4f0908f 100644
--- a/client/src/components/player.box.jsx
+++ b/client/src/components/player.box.jsx
@@ -60,10 +60,10 @@ function Scoreboard(args) {
} = args;
const scoreText = () => {
- if (player.score === 'Zero' || player.score === 'Lose') return [▫, ▫, ▫];
- if (player.score === 'One') return [■, ▫, ▫];
- if (player.score === 'Two') return [■, ■, ▫];
- if (player.score === 'Win') return [■, ■, ■];
+ if (player.score === 'Zero' || player.score === 'Lose') return [▫, ▫, ▫];
+ if (player.score === 'One') return [■, ▫, ▫];
+ if (player.score === 'Two') return [■, ■, ▫];
+ if (player.score === 'Win') return [■, ■, ■];
return '';
};