Refactor conveyor mechanics and action handlers: update spawn count, interval, and delay handling; enhance material management in useMaterialStore; implement spawn action handler; unify action handling across various components.

This commit is contained in:
2025-05-03 18:36:30 +05:30
parent aefa9ec2b2
commit 13af6c2c67
19 changed files with 743 additions and 46 deletions

View File

@@ -9,8 +9,8 @@ function VehicleInstances() {
return (
<>
{vehicles.map((val: VehicleStatus) =>
<VehicleInstance agvDetail={val} key={val.modelUuid} />
{vehicles.map((vehicle: VehicleStatus) =>
<VehicleInstance agvDetail={vehicle} key={vehicle.modelUuid} />
)}
</>