From 2f5c2af8fa984a694dd588b614c8d0cd94aeeb35 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Mon, 21 Sep 2026 13:40:24 -0500 Subject: [PATCH] clean up --- web/public/locales/en/views/settings.json | 4 ++-- web/src/components/player/BirdseyeLivePlayer.tsx | 2 -- web/src/components/player/LivePlayer.tsx | 3 --- 3 files changed, 2 insertions(+), 7 deletions(-) diff --git a/web/public/locales/en/views/settings.json b/web/public/locales/en/views/settings.json index 40e6eb7606..cb8726bad7 100644 --- a/web/public/locales/en/views/settings.json +++ b/web/public/locales/en/views/settings.json @@ -168,8 +168,8 @@ "desc": "Always show the camera names in a chip in the multi-camera live view dashboard." }, "naturalAspectLayout": { - "label": "Use Camera Aspect Ratios", - "desc": "On camera group live view dashboards, size each tile to its camera's own aspect ratio. When disabled, cameras are snapped to a standard wide, landscape, or tall tile shape.", + "label": "Use Natural Aspect Ratios", + "desc": "On camera group live view dashboards, size each tile to its camera's own natural aspect ratio. When disabled, cameras are snapped to a standard wide, landscape, or tall tile shape.", "descNote": "Toggling this setting on or off will clear the layout for all camera group live dashboards." }, "liveFallbackTimeout": { diff --git a/web/src/components/player/BirdseyeLivePlayer.tsx b/web/src/components/player/BirdseyeLivePlayer.tsx index 5fd42e18cd..d9c70188ae 100644 --- a/web/src/components/player/BirdseyeLivePlayer.tsx +++ b/web/src/components/player/BirdseyeLivePlayer.tsx @@ -60,8 +60,6 @@ export default function BirdseyeLivePlayer({
void; onMicrophoneError?: (error: TwoWayTalkError) => void; onResetLiveMode?: () => void; - // Aspect of the source currently on screen: the live stream's while it is - // playing, undefined while the still image is showing. The still comes from - // the detect stream, which can be shaped differently than the live one. onLiveAspectChange?: (aspectRatio: number | undefined) => void; };