From acf9640b7acd4222e1a45cfa957c785ca47d48fe Mon Sep 17 00:00:00 2001 From: mantikoros Date: Wed, 24 Aug 2022 15:34:00 -0500 Subject: [PATCH] eslint --- web/components/bet-panel.tsx | 2 -- 1 file changed, 2 deletions(-) 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)