fixes
This commit is contained in:
@@ -152,6 +152,7 @@ export default function AllMyList() {
|
||||
navigateToMusicDetails({
|
||||
projectId: item.id,
|
||||
songUrl: item?.songUrl,
|
||||
project: item,
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
@@ -208,6 +208,7 @@ const AllMyPlaylist = ({ route }) => {
|
||||
navigateToMusicDetails({
|
||||
projectId: p.id,
|
||||
songUrl: p?.songUrl,
|
||||
project: p,
|
||||
})
|
||||
}
|
||||
onPressMore={(posTop) => {
|
||||
|
||||
@@ -92,6 +92,7 @@ const PlaylistDetails = () => {
|
||||
navigateToMusicDetails({
|
||||
projectId: p.id,
|
||||
songUrl: p?.songUrl,
|
||||
project: p,
|
||||
})
|
||||
}
|
||||
onPressMore={(posTop) => {
|
||||
|
||||
@@ -62,6 +62,7 @@ const LikedMusic = () => {
|
||||
navigateToMusicDetails({
|
||||
projectId: item.id,
|
||||
songUrl: item?.songUrl,
|
||||
project: item,
|
||||
})
|
||||
}
|
||||
>
|
||||
|
||||
@@ -46,6 +46,7 @@ const MyMusic = () => {
|
||||
navigateToMusicDetails({
|
||||
projectId: p.id,
|
||||
songUrl: p?.songUrl,
|
||||
project: p,
|
||||
})
|
||||
}
|
||||
onPressMore={(posTop) => {
|
||||
|
||||
@@ -48,6 +48,7 @@ const SearchResultsList = ({
|
||||
const didNavigate = navigateToMusicDetails({
|
||||
projectId: project?.id,
|
||||
songUrl: project?.songUrl,
|
||||
project,
|
||||
});
|
||||
|
||||
if (didNavigate) {
|
||||
|
||||
Reference in New Issue
Block a user