Skip to content

Commit f0c628e

Browse files
committed
fix lint
1 parent a711e19 commit f0c628e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/scrollBar/ScrollBarGradient.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const ScrollBarGradient = ({
1717
gradientMargins = 0,
1818
height,
1919
gradientColor = Colors.white,
20-
gradientImage = require('./assets/gradientOverlay.png'),
20+
gradientImage = require('./assets/gradientOverlay.png')
2121
}) => {
2222
const gradientOpacity = useRef(new Animated.Value(0)).current;
2323

@@ -32,7 +32,7 @@ const ScrollBarGradient = ({
3232
const imageTransform = useMemo(() => {
3333
return Constants.isRTL ? (left ? undefined : [{scaleX: -1}]) : left ? [{scaleX: -1}] : undefined;
3434
}, [left]);
35-
35+
3636
const heightToUse = gradientHeight || height || '100%';
3737
return (
3838
<View

0 commit comments

Comments
 (0)