Bug Fix: Prevent Duplicate Exit Animations in AnimatePresence #3384
+25
−0
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
🐛 Bug Fix: Prevent Duplicate Exit Animations in AnimatePresence
📋 Problem
AnimatePresence component can process the same exit animation multiple times when receiving rapid sequential DOM events. This occurs when:
pointerdownevent)This is particularly common with UI libraries like Radix UI, where dismissable layers can fire multiple events in quick succession.
✨ Solution
Track components currently processing exit animations to prevent duplicate handling:
🔧 How It Works
onExitis called, check if the component is already being processed✅ Testing
🔗 Related Issues
Impact: Low risk, high value fix for production applications using AnimatePresence with modern UI libraries.