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:
@@ -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} />
|
||||
)}
|
||||
|
||||
</>
|
||||
|
||||
Reference in New Issue
Block a user