diff --git a/app/components/TimeSeriesChart.tsx b/app/components/TimeSeriesChart.tsx index 234aeebac..5fd8f6c2c 100644 --- a/app/components/TimeSeriesChart.tsx +++ b/app/components/TimeSeriesChart.tsx @@ -154,59 +154,60 @@ export default function TimeSeriesChart({ const data = useMemo(() => rawData || [], [rawData]) return ( - - - - - - {/* TODO: stop tooltip being focused by default on pageload if nothing else has been clicked */} - ) => renderTooltip(props, unit)} - cursor={{ stroke: CURSOR_GRAY, strokeDasharray: '3,3' }} - wrapperStyle={{ outline: 'none' }} - /> - - - +
+ + + + + + {/* TODO: stop tooltip being focused by default on pageload if nothing else has been clicked */} + ) => renderTooltip(props, unit)} + cursor={{ stroke: CURSOR_GRAY, strokeDasharray: '3,3' }} + wrapperStyle={{ outline: 'none' }} + /> + + + +
) }