From fdc0ef76c2822d7fb704174ebf4ff1479db0c7dd Mon Sep 17 00:00:00 2001
From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com>
Date: Sun, 1 Feb 2026 11:15:27 -0600
Subject: [PATCH] fix titles
---
web/src/views/settings/GlobalConfigView.tsx | 26 ++------------------
web/src/views/settings/SingleSectionPage.tsx | 2 +-
2 files changed, 3 insertions(+), 25 deletions(-)
diff --git a/web/src/views/settings/GlobalConfigView.tsx b/web/src/views/settings/GlobalConfigView.tsx
index bed579cf7..72b0df7be 100644
--- a/web/src/views/settings/GlobalConfigView.tsx
+++ b/web/src/views/settings/GlobalConfigView.tsx
@@ -82,11 +82,7 @@ const integrationSections = [
];
export default function GlobalConfigView() {
- const { t, i18n } = useTranslation([
- "views/settings",
- "config/global",
- "common",
- ]);
+ const { t } = useTranslation(["views/settings", "config/global", "common"]);
const defaultSharedSection = sharedSections[0]?.key ?? "";
const defaultSystemSection = systemSections[0]?.key ?? "";
const defaultIntegrationSection = integrationSections[0]?.key ?? "";
@@ -214,28 +210,10 @@ export default function GlobalConfigView() {
activeSection === section.key ? "block" : "hidden",
)}
>
-
- {t(`${section.key}.description`, { - ns: "config/global", - })} -
- )} -