regex & hit parade

This commit is contained in:
2025-10-03 14:18:22 +02:00
parent 1907449dee
commit a3201bf7f5
4 changed files with 58 additions and 15 deletions
+2 -2
View File
@@ -72,7 +72,7 @@ const HitParade = () => {
<SongCard
rank={index + 1}
title={item?.title || "Sans titre"}
artist={"MusicLand"}
artist={item?.userName}
coverUrl={item?.coverUrl || null}
onPress={() => navigate(Routes.MusicDetails, { projectId: item.id })}
/>
@@ -92,7 +92,7 @@ const HitParade = () => {
<PlaybacksCard
rank={index + 1}
title={item?.title || "Sans titre"}
artist={"MusicLand"}
artist={item?.userName}
coverUrl={item?.coverUrl || null}
onPress={() => navigate(Routes.Playbacks, { projectId: item.id })}
/>