fix line chart

This commit is contained in:
Hristo Nedelkov 2023-10-18 18:09:24 +03:00
parent a06581eef5
commit 5921af3527
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ const LineChart = ({ years, userGains }: LineChartProps) => {
}
return (
<Stack>
<Stack width={'100%'} height={'75%'} >
<Line data={data} options={options} />
</Stack>
)