From bf45604094338bb169a1a977a9ae17b2580dc489 Mon Sep 17 00:00:00 2001 From: Adam Chambers Date: Fri, 24 Nov 2023 19:36:52 -0500 Subject: [PATCH] chore: switch tvl to $ in asset list filters --- apps/marginfi-v2-ui/src/store/uiStore.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/marginfi-v2-ui/src/store/uiStore.ts b/apps/marginfi-v2-ui/src/store/uiStore.ts index a894877e1c..7ead4b1942 100644 --- a/apps/marginfi-v2-ui/src/store/uiStore.ts +++ b/apps/marginfi-v2-ui/src/store/uiStore.ts @@ -18,13 +18,13 @@ const SORT_OPTIONS_MAP: { [key in SortType]: SortAssetOption } = { direction: sortDirection.ASC, }, TVL_DESC: { - label: "TVL highest to lowest", + label: "$ highest to lowest", value: SortType.TVL_DESC, field: "TVL", direction: sortDirection.DESC, }, TVL_ASC: { - label: "TVL lowest to highest", + label: "$ lowest to highest", value: SortType.TVL_ASC, field: "TVL", direction: sortDirection.ASC,