maybe if these match?

This commit is contained in:
Violet Caulfield
2025-01-12 09:20:03 -06:00
parent c90bb89f09
commit 56d1595e53
2 changed files with 3 additions and 3 deletions

View File

@@ -29,7 +29,7 @@ export default function Album(props: AlbumProps): React.JSX.Element {
const { data: tracks, isLoading } = useItemTracks(props.album.Id!, apiClient!, true);
return (
<SafeAreaView edges={["top", "right", "left"]}>
<SafeAreaView edges={["right", "left"]}>
<ScrollView contentInsetAdjustmentBehavior="automatic">
<YStack alignItems="center">
<CachedImage
@@ -37,7 +37,7 @@ export default function Album(props: AlbumProps): React.JSX.Element {
.getItemImageUrlById(
props.album.Id!,
ImageType.Primary,
{ ...queryConfig.images})}
{ ...queryConfig.playerArtwork})}
imageStyle={{
position: "relative",
width: width / 1.1,

View File

@@ -66,7 +66,7 @@ export default function Player({ navigation }: { navigation : NavigationHelpers<
bottom: 0,
right: 0,
position: "absolute",
zIndex: -1
zIndex: -99
}}
/>