From eb94191b2e436081872a9f5998bdfc9d0d4695fe Mon Sep 17 00:00:00 2001 From: Thomas Hallock Date: Thu, 27 Nov 2025 21:55:58 -0600 Subject: [PATCH] fix: ensure entire region path is clickable with pointerEvents: all MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add explicit pointerEvents: 'all' to region paths so the entire filled area is clickable, not just the visible stroke/fill. This may fix click detection issues on certain states (like Oregon) on older Safari/iPad. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .../src/arcade-games/know-your-world/components/MapRenderer.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/web/src/arcade-games/know-your-world/components/MapRenderer.tsx b/apps/web/src/arcade-games/know-your-world/components/MapRenderer.tsx index 833cec9a..eb85ebdf 100644 --- a/apps/web/src/arcade-games/know-your-world/components/MapRenderer.tsx +++ b/apps/web/src/arcade-games/know-your-world/components/MapRenderer.tsx @@ -2575,6 +2575,8 @@ export function MapRenderer({ style={{ cursor: isExcluded ? 'default' : 'pointer', transition: 'all 0.2s ease', + // Ensure entire path interior is clickable, not just visible fill + pointerEvents: isExcluded ? 'none' : 'all', }} />