We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebfddc4 commit c10575dCopy full SHA for c10575d
1 file changed
src/context/animatedValueContext.tsx
@@ -133,9 +133,10 @@ function useSetupAnimatedValues<T>() {
133
);
134
}, []);
135
136
+ const dragItemOverflow = props.dragItemOverflow;
137
const hoverAnim = useDerivedValue(() => {
138
if (activeIndexAnim.value < 0) return 0;
- return props.dragItemOverflow
139
+ return dragItemOverflow
140
? touchPositionDiff.value
141
: touchPositionDiffConstrained.value;
142
0 commit comments