diff --git a/web/components/contract-card.tsx b/web/components/contract-card.tsx index 7491efbe..4682486d 100644 --- a/web/components/contract-card.tsx +++ b/web/components/contract-card.tsx @@ -165,8 +165,9 @@ function AbbrContractDetails(props: { export function ContractDetails(props: { contract: Contract isCreator?: boolean + children?: any }) { - const { contract, isCreator } = props + const { contract, isCreator, children } = props const { closeTime, creatorName, creatorUsername } = contract const { truePool, createdDate, resolvedDate } = contractMetrics(contract) @@ -222,6 +223,8 @@ export function ContractDetails(props: {