From 5cca279687d8973d25bd9a411a55b632d1c82f63 Mon Sep 17 00:00:00 2001 From: Thomas Hallock Date: Thu, 23 Oct 2025 22:47:30 -0500 Subject: [PATCH] fix(card-sorting): hide activity notifications in spectator mode MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The activity feed showing "player X is moving cards" is unnecessary in observation mode since spectators can see the actions happening on the game board. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .../arcade-games/card-sorting/components/PlayingPhaseDrag.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/src/arcade-games/card-sorting/components/PlayingPhaseDrag.tsx b/apps/web/src/arcade-games/card-sorting/components/PlayingPhaseDrag.tsx index 20f16108..b2ec74fb 100644 --- a/apps/web/src/arcade-games/card-sorting/components/PlayingPhaseDrag.tsx +++ b/apps/web/src/arcade-games/card-sorting/components/PlayingPhaseDrag.tsx @@ -1909,8 +1909,8 @@ export function PlayingPhaseDrag() { })} - {/* Activity Feed (collaborative mode only) */} - {state.gameMode === 'collaborative' && activityFeed.length > 0 && ( + {/* Activity Feed (collaborative mode only, hidden for spectators) */} + {state.gameMode === 'collaborative' && !isSpectating && activityFeed.length > 0 && (