diff --git a/web/src/views/live/DraggableGridLayout.tsx b/web/src/views/live/DraggableGridLayout.tsx index 2434c3921..5d36ca1ba 100644 --- a/web/src/views/live/DraggableGridLayout.tsx +++ b/web/src/views/live/DraggableGridLayout.tsx @@ -1089,10 +1089,10 @@ function CameraMotionDot({ autoLive, }: { camera: CameraConfig; - autoLive: boolean; + autoLive?: boolean; }) { const { activeMotion, offline } = useCameraActivity(camera); - if (!autoLive || offline || !activeMotion) return null; + if (autoLive === false || offline || !activeMotion) return null; return (