diff --git a/suite-native/react-native-graph/src/AnimatedLineGraph.tsx b/suite-native/react-native-graph/src/AnimatedLineGraph.tsx index cf35810c470..710c92f7d53 100644 --- a/suite-native/react-native-graph/src/AnimatedLineGraph.tsx +++ b/suite-native/react-native-graph/src/AnimatedLineGraph.tsx @@ -420,7 +420,7 @@ export function AnimatedLineGraph({ useAnimatedReaction( () => x.value, fingerX => { - if (!loading && (isActive.value || fingerX)) { + if (!loading && isActive.value && fingerX) { setFingerX(fingerX); runOnJS(setFingerPoint)(fingerX); }