# Quick Test: Prize Zone Fix Verification ## Visual Test (30 seconds) 1. Start game: `/game/f6f158c4-47b0-41b9-b3c2-8edc8275b70c` 2. Wait for loading overlay to disappear 3. Count the rectangular zones on the board **PASS:** You see exactly these zones (no prize rectangles): - Active (1 large center zone) - Bench (5 horizontal slots) - Hand (bottom, cards fanned) - Deck (small square, bottom-right area) - Discard (small square, next to deck) - Energy Deck (small square, bottom-left area) **FAIL:** You see a 2x3 grid of prize rectangles on the left side ## Console Test (10 seconds) Open DevTools Console and look for: ``` [StateRenderer] Creating board with layout options: { usePrizeCards: false, ... } ``` **PASS:** `usePrizeCards: false` **FAIL:** `usePrizeCards: true` or missing logs ## Fatal Error Test (1 minute) 1. Open `frontend/src/game/sync/StateRenderer.ts` 2. Line 154, add: `throw new Error('Test')` 3. Refresh game 4. Should see: Full-screen overlay with "Return to Menu" button 5. Should NOT auto-redirect 6. Remove the `throw` line **PASS:** Error overlay stays until you click button **FAIL:** Auto-redirects after 3 seconds ## Result If all 3 tests pass: ✅ **Fix is working correctly!** If any fail: ❌ Report which test failed and what you saw