fix missing AnimatePresence on ItemCard

This commit is contained in:
jeffvli
2025-11-17 03:02:57 -08:00
parent 24f79e352f
commit 4d5dcb1a50
@@ -568,15 +568,17 @@ const PosterItemCard = ({
className={clsx(styles.image, { [styles.isRound]: isRound })}
src={imageUrl}
/>
{withControls && showControls && data && (
<ItemCardControls
controls={controls}
internalState={internalState}
item={data}
itemType={itemType}
type="poster"
/>
)}
<AnimatePresence>
{withControls && showControls && data && (
<ItemCardControls
controls={controls}
internalState={internalState}
item={data}
itemType={itemType}
type="poster"
/>
)}
</AnimatePresence>
</div>
{data && (
<div className={styles.detailContainer}>