Context Menu detents (#478)

Fix context menu height
This commit is contained in:
Violet Caulfield
2025-08-16 17:43:14 -05:00
committed by GitHub
parent eb979ea0a8
commit 80cb767dd3
2 changed files with 3 additions and 8 deletions
+2 -4
View File
@@ -92,9 +92,7 @@ export default function ItemContext({ item, stackNavigation }: ContextProps): Re
const renderViewAlbumRow = useMemo(() => isAlbum || (isTrack && album), [album, item])
return (
<ZStack animation={'quick'}>
<ItemContextBackground item={item} />
<View animation={'quick'}>
<YGroup unstyled flex={1} marginTop={'$8'}>
<FavoriteContextMenuRow item={item} />
@@ -116,7 +114,7 @@ export default function ItemContext({ item, stackNavigation }: ContextProps): Re
/>
)}
</YGroup>
</ZStack>
</View>
)
}