Skip to content

Commit 63202ef

Browse files
committed
Fix link to new imported playlist
Currently using only the ID of the playlist and missing the /playlist/ that precedes it.
1 parent 4836cb3 commit 63202ef

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Diff for: frontend/js/src/user/playlists/components/ImportSoundCloudPlaylistModal.tsx

+4-2
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,10 @@ export default NiceModal.create((props: ImportPLaylistModalProps) => {
106106
title="Successfully imported playlist from Soundcloud"
107107
message={
108108
<>
109-
Imported
110-
<Link to={newPlaylist.identifier}> {playlistName}</Link>
109+
Check out{" "}
110+
<Link to={`/playlist/${newPlaylist.identifier}`}>
111+
{playlistName}
112+
</Link>
111113
</>
112114
}
113115
/>,

0 commit comments

Comments
 (0)