Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
benisgold committed Nov 20, 2023
1 parent 8cf75da commit 94fbd40
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ const ScaleButton = ({
hitSlop={-overflowMargin}
onGestureEvent={gestureHandler}
rippleColor={transparentColor}
// @ts-ignore
style={sx.overflow}
>
<View style={sx.transparentBackground}>
Expand Down
1 change: 1 addition & 0 deletions src/components/animations/HourglassAnimation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ export default function HourglassAnimation() {
d="M73.173,6 L73.173,37.356 L72.389,42.825 L73.173,48.295 L73.173,79.65 L47,79.65 L47,47.752 L49.095,42.825 L47,37.898 L47,6 L73.173,6 Z M60.389,33.872 C58.972,33.872 55.698,36.856 50.569,42.825 C55.698,48.795 58.972,51.779 60.389,51.779 C61.762,51.779 65.134,48.794 70.505,42.825 C65.134,36.857 61.762,33.872 60.389,33.872 Z"
fill={accentColor}
id="hourglass-sand-mask"
// @ts-ignore
style={animatedSandStyles}
transform="translate(0, 0)"
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,7 @@ const ChartPathInner = React.memo(
});

return (
// @ts-ignore
<LongPressGestureHandler
enabled={gestureEnabled}
maxDist={100000}
Expand All @@ -390,11 +391,11 @@ const ChartPathInner = React.memo(
viewBox={`0 0 ${width} ${height}`}
>
<AnimatedPath
// @ts-expect-error
animatedProps={animatedProps}
stroke={stroke}
strokeWidth={strokeWidth}
strokeLinecap="round"
// @ts-ignore
style={pathAnimatedStyles}
{...props}
/>
Expand Down

0 comments on commit 94fbd40

Please sign in to comment.