diff --git a/apps/dashboard/app/(main)/websites/[id]/_components/tabs/performance/_components/web-vitals-metric-cell.tsx b/apps/dashboard/app/(main)/websites/[id]/_components/tabs/performance/_components/web-vitals-metric-cell.tsx index f21ed745b..5162acc7a 100644 --- a/apps/dashboard/app/(main)/websites/[id]/_components/tabs/performance/_components/web-vitals-metric-cell.tsx +++ b/apps/dashboard/app/(main)/websites/[id]/_components/tabs/performance/_components/web-vitals-metric-cell.tsx @@ -65,15 +65,22 @@ export function WebVitalsMetricCell({ const formatted = metric === "cls" ? value.toFixed(3) : formatPerformanceTime(value); const { colorClass, isGood, isPoor } = getMetricStyles(value, metric); - const showIcon = isGood || isPoor; return ( -