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", - })} -
- )} -