diff --git a/web/src/Sidebar.jsx b/web/src/Sidebar.jsx index 7e7a9f3f0..afc69a828 100644 --- a/web/src/Sidebar.jsx +++ b/web/src/Sidebar.jsx @@ -78,18 +78,15 @@ function SortedRecordingCameras({ unsortedCameras }) { return ( - {sortedCameras.map(([camera, conf]) => { - if (conf.record.enabled) { - return ( - - ); - } - return null; + {sortedCameras.map(([camera, _]) => { + return ( + + ); })}