From 50f82d24244e556361eff9c5737dc93d04e760cc Mon Sep 17 00:00:00 2001 From: LewisB Date: Mon, 9 Dec 2024 16:38:55 +0100 Subject: [PATCH] chore: remove log --- packages/app/src/components/DonateComponent.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/app/src/components/DonateComponent.tsx b/packages/app/src/components/DonateComponent.tsx index eb49356..1a0d9e3 100644 --- a/packages/app/src/components/DonateComponent.tsx +++ b/packages/app/src/components/DonateComponent.tsx @@ -274,8 +274,6 @@ const DonateComponent = ({ collective }: DonateComponentProps) => { const donorCurrencyBalance = useGetTokenBalance(token.address, address, chain?.id, true); const totalDecimalDonation = new Decimal((currency === 'G$' ? 1 : duration) * decimalDonationAmount); - - console.log('totalDecimalDonation -->', { totalDecimalDonation: totalDecimalDonation.toString() }); // const totalDonationFormatted = totalDecimalDonation.toDecimalPlaces(currencyDecimals, Decimal.ROUND_DOWN).toString(); const { isNonZeroDonation, isInsufficientBalance, isInsufficientLiquidity, isUnacceptablePriceImpact } =