diff --git a/web/src/app/artists/artists-client.tsx b/web/src/app/artists/artists-client.tsx index c2edad5..d82b801 100644 --- a/web/src/app/artists/artists-client.tsx +++ b/web/src/app/artists/artists-client.tsx @@ -64,6 +64,8 @@ export function ArtistsClient() { refresh(); } + const followedMbids = new Set(artists.map((a) => a.mbid)); + return (
@@ -77,7 +79,11 @@ export function ArtistsClient() {
  • {h.name} {h.disambiguation ? ` (${h.disambiguation})` : ""}{" "} - + {followedMbids.has(h.mbid) ? ( + ยท following + ) : ( + + )}
  • ))}