Change sign

This commit is contained in:
Ian Philips 2022-08-17 12:11:02 -06:00
parent 1ebf31d0a8
commit b9ab4b4f14

View File

@ -22,7 +22,7 @@ async function getTrendingContracts() {
firestore
.collection('contracts')
.where('isResolved', '==', false)
.where('closeTime', '>', Date.now() - DAY_MS)
.where('closeTime', '>', Date.now() + DAY_MS)
.where('visibility', '==', 'public')
.orderBy('popularityScore', 'desc')
.limit(50)