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
398
}
399
399
/>
400
400
}
401
401
-
{song?.artistUri && (
402
402
-
<>
403
403
-
<PopularTracks
404
404
-
topTracks={topTracks}
405
405
-
artist={song.albumArtist}
406
406
-
/>
407
407
-
<PopularAlbums
408
408
-
topAlbums={topAlbums}
409
409
-
artist={song.albumArtist}
410
410
-
/>
411
411
-
</>
412
412
-
)}
401
401
+
{song?.artistUri &&
402
402
+
song?.albumArtist?.toLowerCase() !== "various artists" && (
403
403
+
<>
404
404
+
<PopularTracks
405
405
+
topTracks={topTracks}
406
406
+
artist={song.albumArtist}
407
407
+
/>
408
408
+
<PopularAlbums
409
409
+
topAlbums={topAlbums}
410
410
+
artist={song.albumArtist}
411
411
+
/>
412
412
+
</>
413
413
+
)}
413
414
414
415
<Shout type="song" />
415
416
</>