From 35e104c97e586e11fa36c1cc1094677f754c1acd Mon Sep 17 00:00:00 2001 From: Gabe Farrell <90876006+gabehf@users.noreply.github.com> Date: Mon, 26 Jan 2026 13:03:27 -0500 Subject: [PATCH] fix: gradient background on top charts (#181) --- client/app/routes/Charts/ChartLayout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/app/routes/Charts/ChartLayout.tsx b/client/app/routes/Charts/ChartLayout.tsx index 02ee9bd..446f7d1 100644 --- a/client/app/routes/Charts/ChartLayout.tsx +++ b/client/app/routes/Charts/ChartLayout.tsx @@ -40,7 +40,7 @@ export default function ChartLayout({ useEffect(() => { if ((data?.items?.length ?? 0) === 0) return; - const img = (data.items[0] as any)?.image; + const img = (data.items[0] as any)?.item.image; if (!img) return; average(imageUrl(img, "small"), { amount: 1 }).then((color) => {