Commit 00d3df95 authored by Zach Pomerantz's avatar Zach Pomerantz Committed by GitHub

fix: rm console logs (#3743)

parent 251b8b70
...@@ -17,7 +17,6 @@ function TokenImg({ token, ...rest }: TokenImgProps) { ...@@ -17,7 +17,6 @@ function TokenImg({ token, ...rest }: TokenImgProps) {
// Use the wrapped token info so that it includes the logoURI. // Use the wrapped token info so that it includes the logoURI.
const tokenInfo = useToken(token.isToken ? token.wrapped.address : undefined) ?? token const tokenInfo = useToken(token.isToken ? token.wrapped.address : undefined) ?? token
// TODO(zzmp): TokenImg takes a frame to switch.
const srcs = useCurrencyLogoURIs(tokenInfo) const srcs = useCurrencyLogoURIs(tokenInfo)
const [attempt, setAttempt] = useState(0) const [attempt, setAttempt] = useState(0)
...@@ -35,7 +34,6 @@ function TokenImg({ token, ...rest }: TokenImgProps) { ...@@ -35,7 +34,6 @@ function TokenImg({ token, ...rest }: TokenImgProps) {
[src] [src]
) )
console.log('zzmp', tokenInfo.symbol, src)
if (!src) return <MissingToken color="secondary" {...rest} /> if (!src) return <MissingToken color="secondary" {...rest} />
const alt = tokenInfo.name || tokenInfo.symbol const alt = tokenInfo.name || tokenInfo.symbol
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment