Fix add token dialog

This commit is contained in:
armaniferrante 2021-04-16 10:24:17 -07:00
parent d368648476
commit 401789f349
No known key found for this signature in database
GPG Key ID: 58BEF301E91F7828
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ export default function AddTokenDialog({ open, onClose }) {
</React.Fragment> </React.Fragment>
) : tab === 'popular' ? ( ) : tab === 'popular' ? (
<List disablePadding> <List disablePadding>
{popularTokens.map((tokenInfo) => ( {popularTokens.filter(tokenInfo => tokenInfo.address).map((tokenInfo) => (
<TokenListItem <TokenListItem
key={tokenInfo.address} key={tokenInfo.address}
tokenInfo={tokenInfo} tokenInfo={tokenInfo}