playback
This commit is contained in:
@@ -30,8 +30,8 @@ const CREATE_DATA = [
|
||||
img: ai.bena,
|
||||
bg: background.productionBG,
|
||||
label: "Bena",
|
||||
desc: "Come back when you want\nto publish the song!",
|
||||
type: "Producer",
|
||||
desc: "Come back when you want\nto generate cover!",
|
||||
type: "Designer",
|
||||
},
|
||||
{
|
||||
img: ai.john,
|
||||
@@ -85,18 +85,19 @@ const NewMusicOptions = ({ route }) => {
|
||||
if (isLocked(index)) return;
|
||||
switch (index) {
|
||||
case 0:
|
||||
navigate(Routes.WritingLyrics, {});
|
||||
navigate(Routes.WritingLyrics, {
|
||||
projectId: currentProjet?.id || null,
|
||||
});
|
||||
break;
|
||||
case 1:
|
||||
navigate(Routes.Studio, { action: item.type });
|
||||
navigate(Routes.Compose, { projectId: currentProjet.id });
|
||||
break;
|
||||
case 2:
|
||||
navigate(Routes.Production, { action: item.type });
|
||||
navigate(Routes.PouchReady, { projectId: currentProjet.id });
|
||||
break;
|
||||
case 3:
|
||||
console.log("test");
|
||||
navigate(Routes.Playback, {
|
||||
action: item.type,
|
||||
project: currentProjet,
|
||||
});
|
||||
default:
|
||||
|
||||
Reference in New Issue
Block a user