From ffbb1d676e912e15a1b123d9597af2b5f5e0be04 Mon Sep 17 00:00:00 2001 From: David Lougheed Date: Thu, 28 Sep 2023 13:07:09 -0400 Subject: [PATCH] lint --- src/js/components/Overview/Chart.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/js/components/Overview/Chart.tsx b/src/js/components/Overview/Chart.tsx index 55428040..82eb7c7a 100644 --- a/src/js/components/Overview/Chart.tsx +++ b/src/js/components/Overview/Chart.tsx @@ -62,7 +62,11 @@ const Chart = memo(({ chartConfig, data, units, id }: ChartProps) => { if (val === undefined) return; navigate(`/${i18n.language}/search?${id}=${val}`); }} - renderPopupBody={(_f, d) => <>Count: {d} {units}} + renderPopupBody={(_f, d) => ( + <> + Count: {d} {units} + + )} /> ); }