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
Hide popular tracks/albums for Various Artists
tsiry-sandratraina.com
1 month ago
b568f401
eaede6dd
+13
-12
1 changed file
expand all
collapse all
unified
split
apps
web
src
pages
song
Song.tsx
+13
-12
apps/web/src/pages/song/Song.tsx
···
398
}
399
/>
400
}
401
-
{song?.artistUri && (
402
-
<>
403
-
<PopularTracks
404
-
topTracks={topTracks}
405
-
artist={song.albumArtist}
406
-
/>
407
-
<PopularAlbums
408
-
topAlbums={topAlbums}
409
-
artist={song.albumArtist}
410
-
/>
411
-
</>
412
-
)}
0
413
414
<Shout type="song" />
415
</>
···
398
}
399
/>
400
}
401
+
{song?.artistUri &&
402
+
song?.albumArtist?.toLowerCase() !== "various artists" && (
403
+
<>
404
+
<PopularTracks
405
+
topTracks={topTracks}
406
+
artist={song.albumArtist}
407
+
/>
408
+
<PopularAlbums
409
+
topAlbums={topAlbums}
410
+
artist={song.albumArtist}
411
+
/>
412
+
</>
413
+
)}
414
415
<Shout type="song" />
416
</>