|
@@ -15,7 +15,7 @@ export default ({images = [], className, onChange, onClick, ref, current:propCur
|
|
|
const widthSum = (total, img) => total + (img?.getBoundingClientRect().width || 0)
|
|
|
|
|
|
useEffect(() => {
|
|
|
- if (containerRef.current && imgs.length === images.length){
|
|
|
+ if (containerRef.current && imgs.length === images.length && Number.isInteger(propCurrent) && propCurrent >= 0 && propCurrent < images.length){
|
|
|
const scrollTo = imgs.slice(0,propCurrent).reduce(widthSum, 0)
|
|
|
containerRef.current.scrollTo(scrollTo, 0)
|
|
|
currentScrollPosition.current = scrollTo
|