fix(know-your-world): remove hovered region label from setup screen

Remove the region label element that appeared under the peer regions
navigation on the setup screen.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Thomas Hallock 2025-11-26 21:50:37 -06:00
parent 558d369ba0
commit 5bb228883d
1 changed files with 0 additions and 35 deletions

View File

@ -1106,41 +1106,6 @@ export function DrillDownMapSelector({
</div>
)}
{/* Hovered Region Label - always visible with fixed height */}
<div
data-element="hovered-region-name"
className={css({
marginTop: '2',
textAlign: 'center',
fontSize: 'sm',
fontWeight: '500',
height: '24px', // Fixed height to prevent jiggle
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
gap: '2',
})}
>
<span className={css({ color: isDark ? 'gray.200' : 'gray.700' })}>{hoveredLabel}</span>
{hoveredHint && (
<span
className={css({
color:
hoveredHint === 'click to start game'
? isDark
? 'green.400'
: 'green.600'
: isDark
? 'blue.400'
: 'blue.600',
fontSize: 'xs',
})}
>
({hoveredHint})
</span>
)}
</div>
{/* Start Game Button */}
<button
data-action="start-game"