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) => (