Skip to content

Commit

Permalink
Merge pull request #3095 from metabrainz/ansh/fix-apple-music-import-url
Browse files Browse the repository at this point in the history
fix: Apple Music Import Toast Link
  • Loading branch information
MonkeyDo authored Jan 7, 2025
2 parents 143d865 + 70d18ff commit b030773
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,10 @@ export default NiceModal.create((props: ImportPLaylistModalProps) => {
title="Successfully imported playlist from Apple Music"
message={
<>
Imported
<a href={newPlaylist.identifier}> {playlistName}</a>
Imported{" "}
<Link to={`/playlist/${newPlaylist.identifier}`}>
{playlistName}
</Link>
</>
}
/>,
Expand Down

0 comments on commit b030773

Please sign in to comment.