diff --git a/web/components/contracts-list.tsx b/web/components/contracts-list.tsx index 495b724e..f8f41527 100644 --- a/web/components/contracts-list.tsx +++ b/web/components/contracts-list.tsx @@ -19,7 +19,7 @@ export function ContractsGrid(props: { showHotVolume?: boolean showCloseTime?: boolean }) { - const { showHotVolume, showCloseTime } = props + const { showCloseTime } = props const [resolvedContracts, activeContracts] = _.partition( props.contracts, @@ -33,7 +33,10 @@ export function ContractsGrid(props: { if (contracts.length === 0) { return (

- No markets found. Why not create one? + No markets found. Why not{' '} + + create one? +

) }