fix: rm console logs (#3743)

This commit is contained in:
Zach Pomerantz 2022-04-15 15:19:34 -04:00 committed by GitHub
parent 251b8b703a
commit 00d3df95c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -17,7 +17,6 @@ function TokenImg({ token, ...rest }: TokenImgProps) {
// Use the wrapped token info so that it includes the logoURI.
const tokenInfo = useToken(token.isToken ? token.wrapped.address : undefined) ?? token
// TODO(zzmp): TokenImg takes a frame to switch.
const srcs = useCurrencyLogoURIs(tokenInfo)
const [attempt, setAttempt] = useState(0)
@ -35,7 +34,6 @@ function TokenImg({ token, ...rest }: TokenImgProps) {
[src]
)
console.log('zzmp', tokenInfo.symbol, src)
if (!src) return <MissingToken color="secondary" {...rest} />
const alt = tokenInfo.name || tokenInfo.symbol