feat: remove MKT and Experiments tabs and all related code

Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Christian Vidal Wolf
2026-06-12 08:29:47 +02:00
co-authored by Claude Sonnet 4.6
parent 9f9c0c2975
commit 76d901fcde
25 changed files with 11 additions and 4985 deletions
+1 -20
View File
@@ -11,8 +11,6 @@ interface MetricDetailTooltipProps {
metricName: string;
metricColor: string;
formatValue?: (val: number) => string;
experimentDelta?: number | null;
baselineValue?: number | null;
}
/**
@@ -29,9 +27,7 @@ export const MetricDetailTooltip: React.FC<MetricDetailTooltipProps> = ({
yoyWeekLabel,
metricName,
metricColor,
formatValue,
experimentDelta,
baselineValue
formatValue,
}) => {
const [isVisible, setIsVisible] = useState(false);
@@ -100,21 +96,6 @@ export const MetricDetailTooltip: React.FC<MetricDetailTooltipProps> = ({
)}
</div>
{/* Experiment Baseline Delta (If active) */}
{typeof experimentDelta === 'number' && typeof baselineValue === 'number' && (
<div className="border-t border-fuchsia-500/20 pt-2 mt-2 bg-fuchsia-500/5 -mx-3 px-3 pb-1">
<div className="flex justify-between items-center mb-1">
<span className="text-[10px] text-fuchsia-400/80 font-bold">vs Pre-Experiment Baseline</span>
<span className={`text-xs font-black ${experimentDelta >= 0 ? 'text-emerald-400' : 'text-red-400'}`}>
{experimentDelta >= 0 ? '▲' : '▼'} {Math.abs(experimentDelta).toFixed(1)}%
</span>
</div>
<div className="flex justify-between items-center">
<span className="text-[9px] text-slate-500">Baseline Avg (4w)</span>
<span className="text-[10px] font-bold text-slate-400">{format(baselineValue)}</span>
</div>
</div>
)}
</div>
{/* Arrow */}