diff --git a/web/components/bet-panel.tsx b/web/components/bet-panel.tsx index 01f13caf..3ea8d163 100644 --- a/web/components/bet-panel.tsx +++ b/web/components/bet-panel.tsx @@ -44,7 +44,7 @@ export function BetPanel(props: { contract: Contract; className?: string }) { setBetAmount(str ? amount : undefined) - if (user && user.balance < amount) setError('Balance insufficent') + if (user && user.balance < amount) setError('Insufficient balance') else setError(undefined) } @@ -52,7 +52,7 @@ export function BetPanel(props: { contract: Contract; className?: string }) { if (!user || !betAmount) return if (user.balance < betAmount) { - setError('Balance insufficent') + setError('Insufficient balance') return } @@ -90,61 +90,50 @@ export function BetPanel(props: { contract: Contract; className?: string }) { className )} > -