diff --git a/MVMCoreUI/Atomic/Organisms/Carousel/Carousel.swift b/MVMCoreUI/Atomic/Organisms/Carousel/Carousel.swift index 0328e1ff..5dd4612b 100644 --- a/MVMCoreUI/Atomic/Organisms/Carousel/Carousel.swift +++ b/MVMCoreUI/Atomic/Organisms/Carousel/Carousel.swift @@ -143,7 +143,7 @@ open class Carousel: View { // Check must be dispatched to main for the layout to complete in layoutCollection. DispatchQueue.main.async { [self] in - let shouldHidePager = molecules?.isEmpty ?? true || collectionView.contentSize.width < bounds.width + let shouldHidePager = molecules?.count ?? 0 < 2 || collectionView.contentSize.width < bounds.width if let pagingView = pagingView, shouldHidePager != pagingView.isHidden { pagingView.isHidden = shouldHidePager pagingBottomPin?.isActive = !shouldHidePager