From 0c880bb0cb50a3503f0063857024015e32898bde Mon Sep 17 00:00:00 2001 From: jahooma Date: Tue, 14 Dec 2021 18:29:58 -0600 Subject: [PATCH] Add bet panel for creator of market. Can disable later if we decide to --- web/pages/contract/[contractId].tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/web/pages/contract/[contractId].tsx b/web/pages/contract/[contractId].tsx index 52f9cf4a..68ea6407 100644 --- a/web/pages/contract/[contractId].tsx +++ b/web/pages/contract/[contractId].tsx @@ -47,11 +47,13 @@ export default function ContractPage() { <>
- {isCreator ? ( - - ) : ( + - )} + + {isCreator && ( + + )} + )}