From 91cf125a5d0909e1c9b986841ec3f1a9d42c81f4 Mon Sep 17 00:00:00 2001 From: Linus Rath <139418639+rathlinus@users.noreply.github.com> Date: Wed, 6 May 2026 20:03:19 +0200 Subject: [PATCH] chore: remove experimental tags from themes, plugins, and sender favicons settings --- app/[locale]/settings/page.tsx | 15 ++------------- components/settings/plugins-settings.tsx | 2 +- components/settings/settings-section.tsx | 17 ++--------------- components/settings/themes-settings.tsx | 2 +- locales/cs/common.json | 2 +- locales/de/common.json | 2 +- locales/en/common.json | 2 +- locales/es/common.json | 2 +- locales/fr/common.json | 2 +- locales/it/common.json | 2 +- locales/ja/common.json | 2 +- locales/ko/common.json | 2 +- locales/lv/common.json | 2 +- locales/nl/common.json | 2 +- locales/pl/common.json | 2 +- locales/pt/common.json | 2 +- locales/ru/common.json | 2 +- locales/tr/common.json | 2 +- locales/uk/common.json | 2 +- locales/zh/common.json | 2 +- stores/settings-store.ts | 2 -- 21 files changed, 22 insertions(+), 48 deletions(-) diff --git a/app/[locale]/settings/page.tsx b/app/[locale]/settings/page.tsx index 4bb68d8c..c4fe8c39 100644 --- a/app/[locale]/settings/page.tsx +++ b/app/[locale]/settings/page.tsx @@ -111,7 +111,6 @@ interface TabDef { label: string; icon: LucideIcon; group: TabGroup; - experimental?: boolean; } const tabIcons: Record = { @@ -588,8 +587,8 @@ export default function SettingsPage() { // Advanced { id: 'about_data', label: t('tabs.about_data'), icon: tabIcons.about_data, group: 'advanced' }, - ...(isFeatureEnabled('themesEnabled') ? [{ id: 'themes' as Tab, label: 'Themes', icon: tabIcons.themes, group: 'advanced' as TabGroup, experimental: true }] : []), - ...(isFeatureEnabled('pluginsEnabled') ? [{ id: 'plugins' as Tab, label: 'Plugins', icon: tabIcons.plugins, group: 'advanced' as TabGroup, experimental: true }] : []), + ...(isFeatureEnabled('themesEnabled') ? [{ id: 'themes' as Tab, label: 'Themes', icon: tabIcons.themes, group: 'advanced' as TabGroup }] : []), + ...(isFeatureEnabled('pluginsEnabled') ? [{ id: 'plugins' as Tab, label: 'Plugins', icon: tabIcons.plugins, group: 'advanced' as TabGroup }] : []), ...(isFeatureEnabled('debugModeEnabled') ? [{ id: 'debug' as Tab, label: t('tabs.debug'), icon: tabIcons.debug, group: 'advanced' as TabGroup }] : []), ]; @@ -774,11 +773,6 @@ export default function SettingsPage() { {tab.label} - {tab.experimental && ( - - Experimental - - )} @@ -918,11 +912,6 @@ export default function SettingsPage() { effectiveActiveTab === tab.id ? 'text-accent-foreground' : 'text-muted-foreground' )} /> {tab.label} - {tab.experimental && ( - - Experimental - - )} {subs.map((sub) => (