I gave a fixed height to the image. but the problem is now, the height is also applied in thumbs. How can I prevent this?
<Carousel width="600px" dynamicHeight={false}>
{data?.book?.images.map((image, i) => (
<img src={image} alt={`${i}`} className="h-128" />
))}
</Carousel>;