fix(dashboard): update color for Bounce Rate metric in Chart component to use brand color for consistency

This commit is contained in:
Usman Baig
2026-01-22 21:59:38 +01:00
parent a71ac45a7f
commit 06a8120c68

View File

@@ -248,7 +248,7 @@ export default function Chart({ data, prevData, stats, prevStats, interval }: Ch
label: 'Bounce Rate',
value: `${Math.round(stats.bounce_rate)}%`,
trend: calculateTrend(stats.bounce_rate, prevStats?.bounce_rate),
color: COLORS.danger,
color: COLORS.brand,
invertTrend: true, // Lower bounce rate is better
},
{