From 37f5ece0da1ec5deccfecd6d9650be9a3a23c517 Mon Sep 17 00:00:00 2001 From: Vinay Singh Date: Mon, 20 May 2024 15:32:36 +0530 Subject: [PATCH] removed loggers --- src/components/Logo/AssetLogo.tsx | 1 - src/pages/Rewards/index.tsx | 1 - 2 files changed, 2 deletions(-) diff --git a/src/components/Logo/AssetLogo.tsx b/src/components/Logo/AssetLogo.tsx index 068b9356..175fac59 100644 --- a/src/components/Logo/AssetLogo.tsx +++ b/src/components/Logo/AssetLogo.tsx @@ -65,7 +65,6 @@ const StyledEthereumLogo = styled.img<{ size: number }>` const CurrencyLogo = ({ currency, symbol, size }: { currency: any; symbol: any; size: any }) => { const currencyLogo: any = currency - console.log(currencyLogo, 'currencyLogo') if (currencyLogo && (currencyLogo.name === 'ETHER' || currencyLogo.name === 'ETH' || symbol === 'ETH')) { return } else if (currencyLogo && currencyLogo.logoURI) { diff --git a/src/pages/Rewards/index.tsx b/src/pages/Rewards/index.tsx index 547d3cb0..0bbe4e39 100644 --- a/src/pages/Rewards/index.tsx +++ b/src/pages/Rewards/index.tsx @@ -625,7 +625,6 @@ export default function Rewards() { ) const buttonText = (totalRewardsClaimed && 'Claimed') || (unclaimed_rewards && 'Claim STRK') || (attemptingTxn && 'Claiming...') - console.log(Object.keys(allTokens).length, Boolean(Object.keys(allTokens).length), 'dfkndkfd') const PairListItem = ({ pool }: { pool: any }) => { const token0 = Object.keys(allTokens).length ? allTokens[validateAndParseAddress(pool.token0.tokenAddress)]