Skip to content

Commit

Permalink
fix: Reverse the history order
Browse files Browse the repository at this point in the history
  • Loading branch information
paintoshi committed Oct 24, 2023
1 parent a655d62 commit dd9385a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ const Home: NextPage = () => {
{txSpeedsState.map((x) => (
<Box key={x.chain} display="flex" flexDirection="column" alignItems="center" minWidth="80px">
<TextNormal>{x.label}</TextNormal>
{x.speed.map((speed) => (
{x.speed.slice().reverse().map((speed) => (
<TextSubtle key={speed.timestamp}>{Number((speed.speed || 0) / 1000).toFixed(1)} s</TextSubtle>
))}
</Box>
Expand Down

0 comments on commit dd9385a

Please sign in to comment.