diff --git a/web/frontend/src/components/config/config-page.tsx b/web/frontend/src/components/config/config-page.tsx index d7e1aa1b5..cbce7d27e 100644 --- a/web/frontend/src/components/config/config-page.tsx +++ b/web/frontend/src/components/config/config-page.tsx @@ -13,7 +13,6 @@ import { setLauncherConfig as updateLauncherConfig, } from "@/api/system" import { - AdvancedSection, AgentDefaultsSection, DevicesSection, LauncherSection, @@ -30,7 +29,6 @@ import { } from "@/components/config/form-model" import { PageHeader } from "@/components/page-header" import { Button } from "@/components/ui/button" -import { Separator } from "@/components/ui/separator" export function ConfigPage() { const { t } = useTranslation() @@ -56,11 +54,7 @@ export function ConfigPage() { }, }) - const { - data: launcherConfig, - isLoading: isLauncherLoading, - error: launcherError, - } = useQuery({ + const { data: launcherConfig, isLoading: isLauncherLoading } = useQuery({ queryKey: ["system", "launcher-config"], queryFn: getLauncherConfig, }) @@ -111,10 +105,6 @@ export function ConfigPage() { ? t("pages.config.autostart_unsupported") : t("pages.config.autostart_hint") - const launcherHint = launcherError - ? t("pages.config.launcher_load_error") - : t("pages.config.launcher_restart_hint") - const updateField = ( key: K, value: CoreConfigForm[K], @@ -287,21 +277,14 @@ export function ConfigPage() { - - - - - - - - - -