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
}