diff --git a/web/public/locales/en/views/settings.json b/web/public/locales/en/views/settings.json index cb8726bad7..5e405935ed 100644 --- a/web/public/locales/en/views/settings.json +++ b/web/public/locales/en/views/settings.json @@ -170,7 +170,7 @@ "naturalAspectLayout": { "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." + "descNote": "Toggling this setting on or off will clear the stored layout for all camera group live dashboards. Manual reconfiguration will be required." }, "liveFallbackTimeout": { "label": "Live Player Fallback Timeout", diff --git a/web/src/views/settings/UiSettingsView.tsx b/web/src/views/settings/UiSettingsView.tsx index 71cac612e9..8f885dfd44 100644 --- a/web/src/views/settings/UiSettingsView.tsx +++ b/web/src/views/settings/UiSettingsView.tsx @@ -1,5 +1,3 @@ -import { Alert, AlertDescription } from "@/components/ui/alert"; -import { LuInfo } from "react-icons/lu"; import { Label } from "@/components/ui/label"; import { Switch } from "@/components/ui/switch"; import { @@ -71,7 +69,6 @@ type SwitchSettingRowProps = { id: string; label: string; description: string; - note?: string; checked: boolean | undefined; onCheckedChange: (checked: boolean | undefined) => void; }; @@ -80,7 +77,6 @@ function SwitchSettingRow({ id, label, description, - note, checked, onCheckedChange, }: SwitchSettingRowProps) { @@ -100,15 +96,6 @@ function SwitchSettingRow({
{description}
- {note && ( -