Don't show numeric bet panel if market closed

This commit is contained in:
James Grugett 2022-06-07 17:03:22 -05:00
parent 244bbc51b2
commit 82b189aa48

View File

@ -193,7 +193,7 @@ export function ContractPageContent(props: Parameters<typeof ContractPage>[0]) {
</>
)}
{isNumeric && (
{isNumeric && allowTrade && (
<NumericBetPanel className="xl:hidden" contract={contract} />
)}