Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Sep 28, 2023
1 parent 6318544 commit ffbb1d6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/js/components/Overview/Chart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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}
</>
)}
/>
);
}
Expand Down

0 comments on commit ffbb1d6

Please sign in to comment.