diff --git a/src/components/wallet-assets-percentage.tsx b/src/components/wallet-assets-percentage.tsx index de948e8..e6d1d80 100644 --- a/src/components/wallet-assets-percentage.tsx +++ b/src/components/wallet-assets-percentage.tsx @@ -40,7 +40,7 @@ const App = ({ useState([]); const chartHasData = useMemo( - () => !_(walletAssetsPercentage).isEmpty(), + () => !_(walletAssetsPercentage).filter(p => p.value > 0).isEmpty(), [walletAssetsPercentage] );