diff --git a/web/src/views/live/LiveCameraView.tsx b/web/src/views/live/LiveCameraView.tsx index 5b145d932..0d4e880fe 100644 --- a/web/src/views/live/LiveCameraView.tsx +++ b/web/src/views/live/LiveCameraView.tsx @@ -338,9 +338,6 @@ export default function LiveCameraView({ const zoom = 1 - Math.max(boxW, boxH); const clampedZoom = Math.max(0, Math.min(1, zoom)); - // Send single command with pan, tilt, and zoom. - // The proxy translates this to a Set3DPos command for - // atomic pan+tilt+zoom in one camera movement. sendPtz(`move_relative_${pan}_${tilt}_${clampedZoom}`); }