Reputation: 37
I am using react-slick for carousel. React-slick using centerMode true for every carousel even I don't use this attribute. How can I turn off this attribute. centerMode= false is not working this is setting for react-slick This is Slider component
I try this: centerMode = false but it didn't work
Upvotes: 2
Views: 950
Reputation: 2495
From the API reference: centerMode: false by default, which means the same result if write centerMode: false
. It'd be great to debug if you provided any snippets. However, here is the working example: CodeSanbox.
Besides, please have a look at the link below to see the issue & solution visually: TestWise Replay | StackOverFlow QA - React-slick centerMode
Upvotes: 1