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 }, ); }); };