mirror of
https://github.com/Jellify-Music/App.git
synced 2026-04-22 09:58:46 -05:00
fix nested link in player
This commit is contained in:
@@ -87,14 +87,13 @@ export default function PlayerScreen({ navigation }: { navigation: NativeStackNa
|
||||
</Text>
|
||||
|
||||
<Text
|
||||
bold
|
||||
fontSize={"$6"}
|
||||
color={Colors.Primary}
|
||||
onPress={() => {
|
||||
navigation.goBack(); // Dismiss player modal
|
||||
navigation.push("Artist", {
|
||||
artistName: nowPlaying.artist!,
|
||||
artistId: nowPlaying.ArtistId
|
||||
artistName: nowPlaying!.item.ArtistItems![0].Name ?? "Untitled",
|
||||
artistId: nowPlaying!.item.ArtistItems![0].Id!,
|
||||
})
|
||||
}}
|
||||
>
|
||||
@@ -102,7 +101,6 @@ export default function PlayerScreen({ navigation }: { navigation: NativeStackNa
|
||||
</Text>
|
||||
|
||||
<Text
|
||||
bold
|
||||
fontSize={"$6"}
|
||||
color={"$gray10"}
|
||||
>
|
||||
|
||||
Reference in New Issue
Block a user