A decentralized music tracking and discovery platform built on AT Protocol 🎵

Guard artistsResult.data with optional chaining

+1 -1
+1 -1
apps/web/src/pages/profile/overview/topartists/TopArtists.tsx
··· 124 124 return; 125 125 } 126 126 127 - if (topArtistsRange === LAST_7_DAYS && artistsResult.data.length === 0) { 127 + if (topArtistsRange === LAST_7_DAYS && artistsResult?.data?.length === 0) { 128 128 setRange([]); 129 129 setTopArtistsRange(ALL_TIME); 130 130 }