From 9df9a808bf5b889f2d68b3f591af90d21baac99c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=B6rdle=20Bot?= Date: Thu, 27 Nov 2025 13:06:01 +0100 Subject: [PATCH] fix: share emoji fills remaining slots with black squares when game is lost --- components/Game.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/Game.tsx b/components/Game.tsx index dcf1761..7d3ee5f 100644 --- a/components/Game.tsx +++ b/components/Game.tsx @@ -262,7 +262,8 @@ export default function Game({ dailyPuzzle, genre = null, isSpecial = false, max emojiGrid += '🟥'; } } else { - emojiGrid += '⬜'; + // If game is lost, fill remaining slots with black squares + emojiGrid += hasLost ? '⬛' : '⬜'; } }