fixes
This commit is contained in:
@@ -70,6 +70,7 @@ const HitParade = () => {
|
||||
navigateToMusicDetails({
|
||||
projectId: item.id,
|
||||
songUrl: item?.songUrl,
|
||||
project: item,
|
||||
})
|
||||
}
|
||||
/>
|
||||
@@ -118,6 +119,7 @@ const HitParade = () => {
|
||||
navigateToMusicDetails({
|
||||
projectId: item.id,
|
||||
songUrl: item?.songUrl,
|
||||
project: item,
|
||||
})
|
||||
}
|
||||
/>
|
||||
@@ -138,6 +140,7 @@ const HitParade = () => {
|
||||
navigateToMusicDetails({
|
||||
projectId: item.id,
|
||||
songUrl: item?.songUrl,
|
||||
project: item,
|
||||
})
|
||||
}
|
||||
/>
|
||||
@@ -205,6 +208,7 @@ const HitParade = () => {
|
||||
navigateToMusicDetails({
|
||||
projectId: randomSong.id,
|
||||
songUrl: randomSong?.songUrl,
|
||||
project: randomSong,
|
||||
});
|
||||
}, [navigateToMusicDetails, topSongs]);
|
||||
|
||||
|
||||
@@ -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) {
|
||||
|
||||
@@ -702,7 +702,7 @@ const RecordPlayback = ({ route }) => {
|
||||
<Page
|
||||
style={{ flex: 1 }}
|
||||
width={"100%"}
|
||||
maxWidth={2000}
|
||||
maxWidth={800}
|
||||
containerStyle={{ margin: 0, padding: 0, backgroundColor: Palette.black }}
|
||||
headerType="NONE"
|
||||
>
|
||||
|
||||
@@ -212,6 +212,7 @@ const Profile = () => {
|
||||
navigateToMusicDetails({
|
||||
projectId: item.id,
|
||||
songUrl: item?.songUrl,
|
||||
project: item,
|
||||
})
|
||||
}
|
||||
onPressMore={(posTop) => {
|
||||
|
||||
@@ -58,17 +58,17 @@ const WritingLyrics = () => {
|
||||
gap: 12,
|
||||
}}
|
||||
>
|
||||
<BorderGradientButton
|
||||
maxWidth={500}
|
||||
onPress={() => createAndNavigate({ hasLyrics: true })}
|
||||
containerStyle={{ alignSelf: "center", width: "100%" }}
|
||||
/>
|
||||
<GradientButton
|
||||
maxWidth={500}
|
||||
containerStyle={{ alignSelf: "center", width: "100%" }}
|
||||
title="Écrire des paroles avec une IA"
|
||||
onPress={() => createAndNavigate({ hasLyrics: false })}
|
||||
/>
|
||||
<BorderGradientButton
|
||||
maxWidth={500}
|
||||
onPress={() => createAndNavigate({ hasLyrics: true })}
|
||||
containerStyle={{ alignSelf: "center", width: "100%" }}
|
||||
/>
|
||||
</View>
|
||||
</View>
|
||||
</Page>
|
||||
|
||||
Reference in New Issue
Block a user