Skip to content

Commit

Permalink
feat: Add Key to artist link
Browse files Browse the repository at this point in the history
  • Loading branch information
anshg1214 committed Aug 15, 2024
1 parent a6b0436 commit 99427b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/js/src/utils/utils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -257,15 +257,15 @@ const getMBIDMappingArtistLink = (artists: MBIDMappingArtist[]) => {
return (
<>
{artists.map((artist) => (
<>
<React.Fragment key={artist.artist_mbid}>
<Link
to={`/artist/${artist.artist_mbid}/`}
title={artist.artist_credit_name}
>
{artist.artist_credit_name}
</Link>
{artist.join_phrase}
</>
</React.Fragment>
))}
</>
);
Expand Down

0 comments on commit 99427b8

Please sign in to comment.