diff --git a/client/src/components/GameBoard.tsx b/client/src/components/GameBoard.tsx index bb6652c..9cfceb8 100644 --- a/client/src/components/GameBoard.tsx +++ b/client/src/components/GameBoard.tsx @@ -28,7 +28,7 @@ export default function GameBoard({ gameState, currentPlayerId, actions, fullPla const [expandedMission, setExpandedMission] = useState(null); // Estado para controlar el colapso del panel de jugadores - const [isPlayersCollapsed, setIsPlayersCollapsed] = useState(false); + const [isPlayersCollapsed, setIsPlayersCollapsed] = useState(true); // Estado para controlar el colapso del historial de misiones const [isHistoryCollapsed, setIsHistoryCollapsed] = useState(true);