fix: share emoji fills remaining slots with black squares when game is lost
This commit is contained in:
@@ -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 ? '⬛' : '⬜';
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user