We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fc0808 commit f6c4c4eCopy full SHA for f6c4c4e
src/components/EnergyConsumptionChart.tsx
@@ -230,7 +230,7 @@ const EnergyConsumptionChart = () => {
230
} satisfies ChartData
231
232
return (
233
- <Box mb={16}>
+ <Box my={16}>
234
<Center w="full" mb={{ base: 4, md: 6 }}>
235
<Box
236
position="relative"
@@ -240,7 +240,7 @@ const EnergyConsumptionChart = () => {
240
mb={{ base: 4, md: 0 }}
241
>
242
{/* TODO: isRtl ? data?.reverse() : data */}
243
- <Bar options={chartOptions} data={chartData} />
+ <Bar options={chartOptions} data={chartData} updateMode="none" />
244
</Box>
245
</Center>
246
0 commit comments