From f70308762f398416dd7b2c9d27d709208bbd8ca3 Mon Sep 17 00:00:00 2001 From: Austin Chen Date: Tue, 14 Jun 2022 03:48:15 -0700 Subject: [PATCH] Reduce quick bet size for Atlas --- web/components/contract/quick-bet.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/components/contract/quick-bet.tsx b/web/components/contract/quick-bet.tsx index 1a532eac..71619f53 100644 --- a/web/components/contract/quick-bet.tsx +++ b/web/components/contract/quick-bet.tsx @@ -25,7 +25,7 @@ import { useSaveShares } from '../use-save-shares' import { sellShares } from 'web/lib/firebase/api-call' import { calculateCpmmSale, getCpmmProbability } from 'common/calculate-cpmm' -const BET_SIZE = 10 +const BET_SIZE = 1 export function QuickBet(props: { contract: Contract; user: User }) { const { contract, user } = props