Closed
Description
Redirect "Ir al artista" button on ContextMenuSong to artist profile page.
Create an onclick event and adapt this code to redirect into /artist/artist_name :
const navigate = useNavigate();
const urlUser = `/artist/${name}`;
const handleClickGoToArtist = (event: any) => {
event.preventDefault();
event.stopPropagation();
navigate(urlUser);
};