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)]