diff --git a/components/Album/index.tsx b/components/Album/index.tsx index d19584e0..be18d5e3 100644 --- a/components/Album/index.tsx +++ b/components/Album/index.tsx @@ -15,6 +15,7 @@ import { getItemsApi } from "@jellyfin/sdk/lib/utils/api"; import Client from "../../api/client"; import { useMemo } from "react"; import { useSharedValue } from "react-native-reanimated"; +import { ItemCard } from "../Global/components/item-card"; export function AlbumScreen({ @@ -114,18 +115,16 @@ export function AlbumScreen({ keyExtractor={(item) => item.Id!} data={album.ArtistItems} renderItem={({ index, item: artist }) => - { - navigation.navigate("Artist", { - artist - }); - }} - subheading={artist.Name ?? "Unknown Artist"} - /> - + { + navigation.navigate("Artist", { + artist + }); + }} + /> } />