fix: Integrations list missing when language is not English (#11908)

The group filter on the Integrations settings page compared against the
hardcoded string "Integrations" instead of the translated value from
t("Integrations"), causing no integrations to appear in non-English locales.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Tom Moor
2026-03-30 18:58:32 -04:00
committed by GitHub
parent 701d4bb6ee
commit 7f6ec4ae31
+1 -1
View File
@@ -27,7 +27,7 @@ function Integrations() {
const groupedItems = groupBy(
items.filter(
(item) =>
item.group === "Integrations" &&
item.group === t("Integrations") &&
item.enabled &&
item.path !== settingsPath("integrations") &&
item.name.toLowerCase().includes(query.toLowerCase())