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
});