diff --git a/components/Game.tsx b/components/Game.tsx index f932d9a..7aec342 100644 --- a/components/Game.tsx +++ b/components/Game.tsx @@ -174,7 +174,7 @@ export default function Game({ dailyPuzzle, genre = null, isSpecial = false, max const speaker = hasWon ? '🔉' : '🔇'; const bonusStar = (hasWon && gameState.yearGuessed && dailyPuzzle.releaseYear && gameState.scoreBreakdown.some(item => item.reason === 'Bonus: Correct Year')) ? '⭐' : ''; - const genreText = genre ? `Genre: ${genre}\n` : ''; + const genreText = genre ? `${isSpecial ? 'Special' : 'Genre'}: ${genre}\n` : ''; let shareUrl = 'https://hoerdle.elpatron.me'; if (genre) {