diff --git a/components/ItemDetail/component.tsx b/components/ItemDetail/component.tsx index 6b86f8bf..6b9d0ab9 100644 --- a/components/ItemDetail/component.tsx +++ b/components/ItemDetail/component.tsx @@ -64,7 +64,6 @@ export default function ItemDetail({ color={Colors.Primary} onPress={() => { if (item.ArtistItems) { - navigation.goBack() // Dismiss menu navigation.navigate("Artist", { artist: item.ArtistItems[0] }); diff --git a/components/Player/mini-player.tsx b/components/Player/mini-player.tsx index def55398..be652d1f 100644 --- a/components/Player/mini-player.tsx +++ b/components/Player/mini-player.tsx @@ -55,7 +55,12 @@ export function Miniplayer({ navigation }: { navigation : NavigationHelpers - + { if (nowPlaying!.item.ArtistItems) { - navigation.goBack(); // Dismiss player modal - navigation.push("Artist", { + navigation.navigate("Artist", { artist: nowPlaying!.item.ArtistItems![0], }); }