got me again dammit

This commit is contained in:
Violet Caulfield
2024-11-24 06:41:08 -06:00
parent a7f32bb4b8
commit 6edf59cbb9
+5 -3
View File
@@ -19,9 +19,11 @@ export default function RecentlyPlayed(): React.JSX.Element {
return (
<ScrollView horizontal>
{ data && data.map((recentlyPlayedTrack) => {
<Stack>
<Text>{recentlyPlayedTrack.Name}</Text>
</Stack>
return (
<Stack>
<Text>{recentlyPlayedTrack.Name}</Text>
</Stack>
)
})}
</ScrollView>
)