Skip to content

Commit

Permalink
fix: incorrect tvl sort direction
Browse files Browse the repository at this point in the history
  • Loading branch information
chambaz committed Nov 24, 2023
1 parent ee1e4a6 commit 09223ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/marginfi-v2-ui/src/store/uiStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const SORT_OPTIONS_MAP: { [key in SortType]: SortAssetOption } = {
label: "TVL lowest to highest",
value: SortType.TVL_ASC,
field: "TVL",
direction: sortDirection.DESC,
direction: sortDirection.ASC,
},
};

Expand Down

0 comments on commit 09223ce

Please sign in to comment.