style: rename MKT tab from 'MKT (preview)' to 'MKT'

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
This commit is contained in:
Christian Vidal Wolf
2026-03-11 13:20:05 +01:00
co-authored by Qwen-Coder
parent 9c55d132dd
commit 12fb15cae3
+2 -2
View File
@@ -774,7 +774,7 @@ const App: React.FC = () => {
className={`flex items-center gap-2 px-3 py-2 rounded-md text-sm font-medium transition-all className={`flex items-center gap-2 px-3 py-2 rounded-md text-sm font-medium transition-all
${view === 'mkt' ? 'bg-slate-800 text-white shadow-sm ring-1 ring-white/10' : 'text-slate-400 hover:text-white hover:bg-slate-800/50'}`} ${view === 'mkt' ? 'bg-slate-800 text-white shadow-sm ring-1 ring-white/10' : 'text-slate-400 hover:text-white hover:bg-slate-800/50'}`}
> >
<ChartIcon /> <span className="hidden lg:inline">MKT (preview)</span> <ChartIcon /> <span className="hidden lg:inline">MKT</span>
</button> </button>
<button <button
onClick={() => setView('ads')} onClick={() => setView('ads')}
@@ -947,7 +947,7 @@ const App: React.FC = () => {
{ key: 'weekly' as const, icon: <TrendingIcon />, label: 'Weekly' }, { key: 'weekly' as const, icon: <TrendingIcon />, label: 'Weekly' },
{ key: 'ads' as const, icon: <MegaphoneIcon />, label: 'Ads' }, { key: 'ads' as const, icon: <MegaphoneIcon />, label: 'Ads' },
{ key: 'forecast' as const, icon: <ChartIcon />, label: 'Fc 26' }, { key: 'forecast' as const, icon: <ChartIcon />, label: 'Fc 26' },
{ key: 'mkt' as const, icon: <ChartIcon />, label: 'MKT (preview)' }, { key: 'mkt' as const, icon: <ChartIcon />, label: 'MKT' },
{ key: 'vendor' as const, icon: <ChartIcon />, label: 'BSR' }, { key: 'vendor' as const, icon: <ChartIcon />, label: 'BSR' },
{ key: 'experiments' as const, icon: <span className="text-lg">🧪</span>, label: 'Exp' }, { key: 'experiments' as const, icon: <span className="text-lg">🧪</span>, label: 'Exp' },
]).map(({ key, icon, label }) => ( ]).map(({ key, icon, label }) => (