Skip to content

Commit

Permalink
feat(connections): reverse chains
Browse files Browse the repository at this point in the history
  • Loading branch information
kunish committed Aug 30, 2023
1 parent b169133 commit 43edb25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/Connections.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export default () => {
},
{
accessorKey: 'Chains',
accessorFn: (row) => row.chains.join(' -> '),
accessorFn: (row) => row.chains.slice().reverse().join(' :: '),
},
{
accessorKey: 'DL Speed',
Expand Down

0 comments on commit 43edb25

Please sign in to comment.