79102392

Date: 2024-10-18 14:02:18
Score: 0.5
Natty:
Report link

In my case deleting this callback function fixed this issue.

    intensity.value = withTiming(100, {
            duration: animationDuration
        }, () => {
            setIsBlurred(false);
        });
//to
    intensity.value = withTiming(100, {
        duration: animationDuration
    });
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Atakan Otur