diff --git a/components/Game.tsx b/components/Game.tsx index 7760600..0740b54 100644 --- a/components/Game.tsx +++ b/components/Game.tsx @@ -120,9 +120,12 @@ export default function Game({ dailyPuzzle, genre = null, isSpecial = false, max // If this was the winning guess (last one and won) if (hasWon && i === gameState.guesses.length - 1) { emojiGrid += '🟩'; - } else { - // Wrong or skipped + } else if (gameState.guesses[i] === 'SKIPPED') { + // Skipped emojiGrid += '⬛'; + } else { + // Wrong guess + emojiGrid += '🟥'; } } else { // Unused attempts