Skip to content

Commit

Permalink
removed loggers
Browse files Browse the repository at this point in the history
  • Loading branch information
vnaysngh-mudrex committed May 20, 2024
1 parent 69eb644 commit 37f5ece
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/components/Logo/AssetLogo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 <StyledEthereumLogo src={EthereumLogo} alt={`${symbol ?? 'token'} logo`} size={size} loading="lazy" />
} else if (currencyLogo && currencyLogo.logoURI) {
Expand Down
1 change: 0 additions & 1 deletion src/pages/Rewards/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down

0 comments on commit 37f5ece

Please sign in to comment.