diff --git a/components/account/VolumeChart.tsx b/components/account/VolumeChart.tsx index ab6768f2..b868bfbe 100644 --- a/components/account/VolumeChart.tsx +++ b/components/account/VolumeChart.tsx @@ -135,7 +135,9 @@ const VolumeChart = ({ hideChart }: { hideChart: () => void }) => { return dataTime >= limit }) if (daysToShow === '30') { - return chunkDataByDay(filtered) + return chunkDataByDay(filtered).sort((a, b) => + a.time.localeCompare(b.time), + ) } return filtered }, [chartData, daysToShow])