From 646d3dd651062b7832e2f7cd8e67d9d8f0cf7bf7 Mon Sep 17 00:00:00 2001 From: CosmicSlothOracle Date: Fri, 30 Jan 2026 15:11:30 +0000 Subject: [PATCH] Fix corruption highlight variable in board --- src/components/GameBoard.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/GameBoard.tsx b/src/components/GameBoard.tsx index 1a2615f4..ffba90ab 100644 --- a/src/components/GameBoard.tsx +++ b/src/components/GameBoard.tsx @@ -255,14 +255,14 @@ const GameBoard: React.FC = ({ style, label, () => onCardClick({ type: 'row_slot', player, lane, index }), - isCorruptionTarget, + shouldHighlightCorruption, ); } return renderCard( card, style, { type: 'board_card', player, lane, index, card }, - { highlight: isCorruptionTarget }, + { highlight: shouldHighlightCorruption }, ); }); };