diff --git a/web/components/contract-feed.tsx b/web/components/contract-feed.tsx index 318a07a5..dc1d1bbd 100644 --- a/web/components/contract-feed.tsx +++ b/web/components/contract-feed.tsx @@ -305,15 +305,13 @@ function FeedQuestion(props: { contract: Contract }) { const { truePool } = contractMetrics(contract) const isBinary = outcomeType === 'BINARY' - // Currently hidden on mobile; ideally we'd fit this in somewhere. const closeMessage = contract.isResolved || !contract.closeTime ? null : ( - - {formatMoney(truePool)} pool + <> {contract.closeTime > Date.now() ? 'Closes' : 'Closed'} - + ) return ( @@ -330,7 +328,11 @@ function FeedQuestion(props: { contract: Contract }) { username={creatorUsername} />{' '} asked - {closeMessage} + {/* Currently hidden on mobile; ideally we'd fit this in somewhere. */} + + {formatMoney(truePool)} pool + {closeMessage} +