From d0beb1e04a1aefc86732de6ff3e29b15bfdd5f65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl-Gerhard=20Lindesva=CC=88rd?= Date: Sat, 23 Mar 2024 22:30:15 +0100 Subject: [PATCH] dashboard: fix serie icon --- apps/dashboard/src/components/report/chart/SerieIcon.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dashboard/src/components/report/chart/SerieIcon.tsx b/apps/dashboard/src/components/report/chart/SerieIcon.tsx index 47edce1d..6acca2f0 100644 --- a/apps/dashboard/src/components/report/chart/SerieIcon.tsx +++ b/apps/dashboard/src/components/report/chart/SerieIcon.tsx @@ -53,7 +53,7 @@ const mapper: Record = { ...Object.entries(iconsWithUrls).reduce( (acc, [key, value]) => ({ ...acc, - [key]: createImageIcon(value), + [key]: createImageIcon(getProxyImage(value)), }), {} ),