Most popular=> Trending

This commit is contained in:
Ian Philips 2022-08-01 09:03:46 -06:00
parent ae2e7dfe30
commit 0819c3918f
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ const searchIndexName = ENV === 'DEV' ? 'dev-contracts' : 'contractsIndex'
const sortOptions = [
{ label: 'Newest', value: 'newest' },
{ label: 'Most popular', value: 'score' },
{ label: 'Trending', value: 'score' },
{ label: 'Most traded', value: 'most-traded' },
{ label: '24h volume', value: '24-hour-vol' },
{ label: 'Last updated', value: 'last-updated' },

View File

@ -102,7 +102,7 @@ export default function ContractSearchFirestore(props: {
>
<option value="newest">Newest</option>
<option value="oldest">Oldest</option>
<option value="score">Most popular</option>
<option value="score">Trending</option>
<option value="most-traded">Most traded</option>
<option value="24-hour-vol">24h volume</option>
<option value="close-date">Closing soon</option>