Tweak spacing

This commit is contained in:
James Grugett 2022-04-18 01:52:02 -05:00
parent 2a331a3916
commit 9b49e02589

View File

@ -145,12 +145,13 @@ export function ContractPageContent(props: FirstArgument<typeof ContractPage>) {
comments={comments ?? []}
/>
{contract.outcomeType === 'FREE_RESPONSE' && (
{outcomeType === 'FREE_RESPONSE' && !isResolved && (
<>
<Spacer h={4} />
<AnswersPanel
contract={contract as FullContract<DPM, FreeResponse>}
/>
<Spacer h={4} />
</>
)}