update card controls animation back to slide up

This commit is contained in:
jeffvli
2025-10-09 14:27:06 -07:00
parent 1172152018
commit 4dba1e3d94
2 changed files with 1 additions and 2 deletions
@@ -42,7 +42,7 @@ const containerProps = {
animate: 'show',
exit: 'hidden',
initial: 'hidden',
variants: animationVariants.combine(animationVariants.zoomIn, animationVariants.fadeIn),
variants: animationVariants.combine(animationVariants.slideInUp, animationVariants.fadeIn),
},
};
@@ -32,7 +32,6 @@ interface ItemCardProps {
data: Album | AlbumArtist | Artist | Playlist | Song | undefined;
isRound?: boolean;
itemType: LibraryItem;
type?: 'compact' | 'default' | 'poster';
withControls?: boolean;
}