import React from "react"; import { ArrowRightLeft } from "lucide-react"; import { CHIP_CONFIG, getPlayerPrice } from "../utils/fplLogic"; export const ActiveMovesPanel = ({ activeGW, manualOverrides, globalPlayers, chipsByGw, transfersByGw }) => { const activeLock = manualOverrides[activeGW] || {}; const manualTransfers = activeLock.manualTransfers || {}; const chip = chipsByGw[activeGW]; const tData = transfersByGw[activeGW] || { count: 0, netDelta: 0 }; const moveEntries = Object.entries(manualTransfers); const hasMoves = moveEntries.length > 0; return (