diff --git a/apps/dapp/src/components/Charts/BiAxialAreaChart.tsx b/apps/dapp/src/components/Charts/BiAxialAreaChart.tsx index 11711589a..db0b9b256 100644 --- a/apps/dapp/src/components/Charts/BiAxialAreaChart.tsx +++ b/apps/dapp/src/components/Charts/BiAxialAreaChart.tsx @@ -2,7 +2,16 @@ import type { DataKey } from 'recharts/types/util/types'; import React from 'react'; import { useTheme } from 'styled-components'; -import { ResponsiveContainer, AreaChart as RechartsChart, Area, XAxis, YAxis, Tooltip, Legend, CartesianGrid } from 'recharts'; +import { + ResponsiveContainer, + AreaChart as RechartsChart, + Area, + XAxis, + YAxis, + Tooltip, + Legend, + CartesianGrid, +} from 'recharts'; import { formatNumberAbbreviated, formatNumberFixedDecimals } from 'utils/formatter'; import { useMediaQuery } from 'react-responsive'; import { queryPhone } from 'styles/breakpoints'; @@ -37,7 +46,7 @@ export default function BiAxialLineChart(props: React.PropsWithChildren - + {lines.map((line) => ( (props: React.PropsWithChildren - {lines.length > 1 ? : null} + {lines.length > 1 ? ( + + ) : null} );