feat: refine creation and registration flows

This commit is contained in:
Sacha
2026-07-30 09:42:12 +02:00
parent 3fff09ba81
commit 761f3cc200
39 changed files with 1444 additions and 1239 deletions
+2 -2
View File
@@ -295,7 +295,7 @@ const Home = ({ navigation, route }) => {
if (selectedProject?.id !== currentProject.id) {
selectProject(currentProject.id)
}
const targetRoute = beatmakerStage?.route || Routes.Compose
const targetRoute = beatmakerStage?.route || Routes.ComposeSong
navigate(targetRoute, beatmakerStage?.params)
},
},
@@ -324,7 +324,7 @@ const Home = ({ navigation, route }) => {
const songwriterAction = useMemo(() => getStageAction('songwriter', null), [])
const handleStartNew = useCallback(async () => {
const targetRoute = songwriterAction?.route || Routes.WritingLyrics
const targetRoute = songwriterAction?.route || Routes.CreateLyricsWithAi
const targetParams = songwriterAction?.params
try {