diff --git a/web/components/contract/quick-bet.tsx b/web/components/contract/quick-bet.tsx
index 8f642656..a9e6f40a 100644
--- a/web/components/contract/quick-bet.tsx
+++ b/web/components/contract/quick-bet.tsx
@@ -142,32 +142,41 @@ export function QuickBet(props: { contract: Contract; user: User }) {
{/* Down bet triangle */}
-
-
setDownHover(true)}
- onMouseLeave={() => setDownHover(false)}
- onClick={() => placeQuickBet('DOWN')}
- >
- {hasDownShares > 0 ? (
+ {contract.outcomeType !== 'BINARY' ? (
+
+
- ) : (
-
- )}
-
- {formatMoney(10)}
-
+ ) : (
+
+
setDownHover(true)}
+ onMouseLeave={() => setDownHover(false)}
+ onClick={() => placeQuickBet('DOWN')}
+ >
+ {hasDownShares > 0 ? (
+
+ ) : (
+
+ )}
+
+ {formatMoney(10)}
+
+
+ )}
)
}