feat: texts

This commit is contained in:
2026-01-12 16:28:14 +01:00
parent 0af799bb4d
commit 671bfe8a73
4 changed files with 9 additions and 11 deletions
+4 -4
View File
@@ -100,8 +100,8 @@ const SongReady = () => {
useEffect(() => {
const urls = Array.isArray(selectedProject?.musicUrls)
? selectedProject.musicUrls
.filter((url) => typeof url === 'string' && url.trim())
.map((url) => url.trim())
.filter((url) => typeof url === 'string' && url.trim())
.map((url) => url.trim())
: []
setMusicUrls(urls)
setSelectedIndex((prev) => {
@@ -189,7 +189,7 @@ const SongReady = () => {
setShowRegenerateModal(false)
try {
await pauseAllPlayers()
} catch { }
} catch {}
navigate(Routes.Lyrics)
}
@@ -262,7 +262,7 @@ const SongReady = () => {
onPressBack={async () => {
try {
await pauseAllPlayers()
} catch { }
} catch {}
navigate(Routes.Home)
}}
progress={63}