diff --git a/web/components/contract/quick-bet.tsx b/web/components/contract/quick-bet.tsx index a9415c5c..d7b37834 100644 --- a/web/components/contract/quick-bet.tsx +++ b/web/components/contract/quick-bet.tsx @@ -49,7 +49,8 @@ export function QuickBet(props: { contract: Contract }) { userBets, topAnswer?.number.toString() || undefined ) - const hasUpShares = yesFloorShares || contract.outcomeType === 'NUMERIC' + const hasUpShares = + yesFloorShares || (noFloorShares && contract.outcomeType === 'NUMERIC') const hasDownShares = noFloorShares && yesFloorShares <= 0 && contract.outcomeType !== 'NUMERIC'