From c9e91909378756954aa0000b963da8dbe1eb29cd Mon Sep 17 00:00:00 2001 From: Thomas Hallock Date: Wed, 26 Nov 2025 21:50:59 -0600 Subject: [PATCH] fix(know-your-world): remove tips section from setup screen MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .../know-your-world/components/SetupPhase.tsx | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/apps/web/src/arcade-games/know-your-world/components/SetupPhase.tsx b/apps/web/src/arcade-games/know-your-world/components/SetupPhase.tsx index 343a7c64..0d8dbfca 100644 --- a/apps/web/src/arcade-games/know-your-world/components/SetupPhase.tsx +++ b/apps/web/src/arcade-games/know-your-world/components/SetupPhase.tsx @@ -532,25 +532,6 @@ export function SetupPhase() { - {/* Tips Section */} -
- Tip: Press G to give up on a region.{' '} - {(state.assistanceLevel === 'guided' || state.assistanceLevel === 'helpful') && - 'Skipped regions return after 2-3 turns.'} - {state.assistanceLevel === 'standard' && 'Giving up counts against your score.'} - {state.assistanceLevel === 'none' && 'No assistance available in this mode.'} - {selectedAssistance?.hintsMode === 'onRequest' && ' Press H for hints!'} -
) }