From 94c448ee8b52f28999cf7f3e0cb86760f060c8e4 Mon Sep 17 00:00:00 2001 From: James Grugett Date: Fri, 16 Sep 2022 17:43:27 -0500 Subject: [PATCH] Most predictions => Most traded --- web/components/contract-search.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/components/contract-search.tsx b/web/components/contract-search.tsx index 9b336957..9ecb6a2c 100644 --- a/web/components/contract-search.tsx +++ b/web/components/contract-search.tsx @@ -40,7 +40,7 @@ const searchIndexName = ENV === 'DEV' ? 'dev-contracts' : 'contractsIndex' export const SORTS = [ { label: 'Newest', value: 'newest' }, { label: 'Trending', value: 'score' }, - { label: `Most ${PAST_BETS}`, value: 'most-traded' }, + { label: `Most traded`, value: 'most-traded' }, { label: '24h volume', value: '24-hour-vol' }, { label: '24h change', value: 'prob-change-day' }, { label: 'Last updated', value: 'last-updated' },