diff --git a/web/components/contract-card.tsx b/web/components/contract-card.tsx
index d40089d7..c3d9595d 100644
--- a/web/components/contract-card.tsx
+++ b/web/components/contract-card.tsx
@@ -12,15 +12,16 @@ import {
import { Col } from './layout/col'
import { parseTags } from '../lib/util/parse'
import dayjs from 'dayjs'
-import { TrendingUpIcon } from '@heroicons/react/solid'
+import { TrendingUpIcon, ClockIcon } from '@heroicons/react/solid'
import { DateTimeTooltip } from './datetime-tooltip'
export function ContractCard(props: {
contract: Contract
showHotVolume?: boolean
+ showCloseTime?: boolean
className?: string
}) {
- const { contract, showHotVolume, className } = props
+ const { contract, showHotVolume, showCloseTime, className } = props
const { question, resolution } = contract
const { probPercent } = contractMetrics(contract)
@@ -42,7 +43,11 @@ export function ContractCard(props: {
probPercent={probPercent}
/>
-
# | +Name | + {columns.map((column) => ( +{column.header} | + ))} +
---|---|---|
{index + 1} | +
+ {user.name}
+ |
+ {columns.map((column) => (
+ {column.renderCell(user)} | + ))} +