diff --git a/web/components/bet-panel.tsx b/web/components/bet-panel.tsx index a74442d0..8e7f4999 100644 --- a/web/components/bet-panel.tsx +++ b/web/components/bet-panel.tsx @@ -259,8 +259,6 @@ function BuyPanel(props: { const currentReturn = betAmount ? (currentPayout - betAmount) / betAmount : 0 const currentReturnPercent = formatPercent(currentReturn) - const totalFees = sum(Object.values(newBet.fees)) - const format = getFormattedMappedValue(contract) const bankrollFraction = (betAmount ?? 0) / (user?.balance ?? 1e9)