From 0f5401f82d4645a7cfe667ad674cde88d1d928e8 Mon Sep 17 00:00:00 2001 From: Austin Chen Date: Wed, 15 Jun 2022 09:05:26 -0700 Subject: [PATCH] Stop hardcoding quick bet size --- web/components/contract/quick-bet.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/components/contract/quick-bet.tsx b/web/components/contract/quick-bet.tsx index 71619f53..4d0ea396 100644 --- a/web/components/contract/quick-bet.tsx +++ b/web/components/contract/quick-bet.tsx @@ -159,7 +159,7 @@ export function QuickBet(props: { contract: Contract; user: User }) { onClick={() => placeQuickBet('UP')} />
- {formatMoney(10)} + {formatMoney(BET_SIZE)}
{hasUpShares > 0 ? ( @@ -213,7 +213,7 @@ export function QuickBet(props: { contract: Contract; user: User }) { /> )}
- {formatMoney(10)} + {formatMoney(BET_SIZE)}
)}