diff --git a/src/components/ImageGallery.jsx b/src/components/ImageGallery.jsx index eaaae288..8ef0fb1a 100644 --- a/src/components/ImageGallery.jsx +++ b/src/components/ImageGallery.jsx @@ -764,7 +764,7 @@ class ImageGallery extends React.Component { canSlideLeft() { const { infinite, isRTL } = this.props; - //reverse the logic if the slider has isRTL enabled + // reverse the logic if the slider has isRTL enabled return infinite || (isRTL ? this.canSlideNext() : this.canSlidePrevious()); }