fix: Remove console log statements for cleaner output

This commit is contained in:
2025-04-08 15:00:36 +05:30
parent b5ba3a0ce1
commit a6993ccd2e
3 changed files with 1 additions and 3 deletions

View File

@@ -513,7 +513,6 @@ function PathConnector({ pathsGroupRef }: { pathsGroupRef: React.MutableRefObjec
// For Vehicles, check if they're already connected to anything
if (intersected.userData.path.type === 'Vehicle') {
console.log('intersected: ', intersected);
const vehicleConnections = intersected.userData.path.points.connections.targets.length;
if (vehicleConnections >= 1) {
console.log("Vehicle can only have one connection");

View File

@@ -19,7 +19,7 @@ function Simulation() {
const [processes, setProcesses] = useState([]);
useEffect(() => {
console.log('simulationStates: ', simulationStates);
// console.log('simulationStates: ', simulationStates);
}, [simulationStates]);
// useEffect(() => {