From 3f471e7e8e0149ceef867138b9abb91b43dc4177 Mon Sep 17 00:00:00 2001 From: Ian Philips Date: Fri, 22 Apr 2022 04:30:13 -0600 Subject: [PATCH] Sell either type of share for dpm market --- web/components/bet-row.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/components/bet-row.tsx b/web/components/bet-row.tsx index 4285fe98..dd1ba496 100644 --- a/web/components/bet-row.tsx +++ b/web/components/bet-row.tsx @@ -39,12 +39,12 @@ export default function BetRow(props: { setBetChoice(choice) }} replaceNoButton={ - yesFloorShares > noFloorShares && yesFloorShares > 0 ? ( + yesFloorShares > 0 ? ( ) : undefined } replaceYesButton={ - noFloorShares > yesFloorShares && noFloorShares > 0 ? ( + noFloorShares > 0 ? ( ) : undefined }