From 27d765a4a1a18c6351079a518240c29ca5b4c8f7 Mon Sep 17 00:00:00 2001 From: James Grugett Date: Mon, 3 Oct 2022 17:28:31 -0500 Subject: [PATCH] Add most popular sort --- web/components/contract-search.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/web/components/contract-search.tsx b/web/components/contract-search.tsx index 43f17599..ce1c67c9 100644 --- a/web/components/contract-search.tsx +++ b/web/components/contract-search.tsx @@ -47,6 +47,7 @@ export const SORTS = [ { label: 'Trending', value: 'score' }, { label: 'Daily trending', value: 'daily-score' }, { label: '24h volume', value: '24-hour-vol' }, + { label: 'Most popular', value: 'most-popular' }, { label: 'Last updated', value: 'last-updated' }, { label: 'Closing soon', value: 'close-date' }, { label: 'Resolve date', value: 'resolve-date' },