tangled
alpha
login
or
join now
t1c.dev
/
rocksky
forked from
rocksky.app/rocksky
2
fork
atom
A decentralized music tracking and discovery platform built on AT Protocol 🎵
2
fork
atom
overview
issues
pulls
pipelines
Guard artistsResult.data with optional chaining
tsiry-sandratraina.com
1 month ago
8325de28
0eff5aad
+1
-1
1 changed file
expand all
collapse all
unified
split
apps
web
src
pages
profile
overview
topartists
TopArtists.tsx
+1
-1
apps/web/src/pages/profile/overview/topartists/TopArtists.tsx
···
124
124
return;
125
125
}
126
126
127
127
-
if (topArtistsRange === LAST_7_DAYS && artistsResult.data.length === 0) {
127
127
+
if (topArtistsRange === LAST_7_DAYS && artistsResult?.data?.length === 0) {
128
128
setRange([]);
129
129
setTopArtistsRange(ALL_TIME);
130
130
}