Skip to content

Commit

Permalink
fix: slider images animate (#724)
Browse files Browse the repository at this point in the history
  • Loading branch information
Juli Ovechkina authored Nov 29, 2023
1 parent 3436dad commit fad0352
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Media/Image/Image.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ const Image = (props: ImageAllProps) => {
const fullscreenItem = fullscreen === undefined || fullscreen;

return (
<SliderBlock slidesToShow={1} type={SliderType.MediaCard} animated={parallax}>
<SliderBlock slidesToShow={1} type={SliderType.MediaCard}>
{imageArray.map((item, index) => (
<Fragment key={index}>
{fullscreenItem ? renderFullscreenImage(item) : imageOnly(item)}
Expand Down

0 comments on commit fad0352

Please sign in to comment.