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

Hide popular tracks/albums for Various Artists

+13 -12
+13 -12
apps/web/src/pages/song/Song.tsx
··· 398 398 } 399 399 /> 400 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 - )} 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 + )} 413 414 414 415 <Shout type="song" /> 415 416 </>