diff --git a/components/brave_wallet_ui/page/container.tsx b/components/brave_wallet_ui/page/container.tsx index 67b894023233..18f9d8926dae 100644 --- a/components/brave_wallet_ui/page/container.tsx +++ b/components/brave_wallet_ui/page/container.tsx @@ -316,8 +316,9 @@ function Container (props: Props) { // This will scrape all of the user's accounts and combine the fiat value for every asset const fullPortfolioBalance = React.useMemo(() => { - const amountList = userAssetList.map((item) => { - return item.asset.visible ? fullAssetFiatBalance(item.asset) !== '' ? fullAssetFiatBalance(item.asset) : undefined : 0 + const filteredList = userAssetList.filter((token) => token.asset.visible && !token.asset.isErc721) + const amountList = filteredList.map((item) => { + return fullAssetFiatBalance(item.asset) !== '' ? fullAssetFiatBalance(item.asset) : undefined }) if (amountList.length === 0) { return ''