From 06a8120c68099c3c91ed55fa55eec4079344558c Mon Sep 17 00:00:00 2001 From: Usman Baig Date: Thu, 22 Jan 2026 21:59:38 +0100 Subject: [PATCH] fix(dashboard): update color for Bounce Rate metric in Chart component to use brand color for consistency --- components/dashboard/Chart.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/dashboard/Chart.tsx b/components/dashboard/Chart.tsx index 8b07560..3a337f3 100644 --- a/components/dashboard/Chart.tsx +++ b/components/dashboard/Chart.tsx @@ -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 }, {