We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a80bb28 commit aed3e1bCopy full SHA for aed3e1b
1 file changed
src/components/NotifierRenderer.tsx
@@ -115,6 +115,9 @@ const NotifierRendererComponent = forwardRef<
115
}));
116
117
useEffect(() => {
118
+ // if "hideNotification" method was called before show notification animation started - ignore it.
119
+ if (isHidingRef.current) return;
120
+
121
Animated[notification.showAnimationConfig.method](animationState, {
122
useNativeDriver: true,
123
...notification.showAnimationConfig.config,
0 commit comments