-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Closed
Labels
Description
Describe the bug
When the onSuccess handler for useMutation fires, you will have stale values of the state used inside onSuccess.
My thinking is that useMutation probably uses the value of onSuccess when mutate() is ran.
Your minimal, reproducible example
https://codesandbox.io/s/focused-buck-fxbe50?file=/src/App.tsx:966-1008
Steps to reproduce
- Open Devtools
- Press "Mutate" button
- While the mutation is on-going, press the "Close" button
Expected behavior
As a user, I expected isOpen to be false. Instead, I got true -- which was the value of isOpen when the mutation ran.
How often does this bug happen?
Every time
Screenshots or Videos
Platform
- OS: macOS Monterey
- Browser: 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36'
TanStack Query version
v3.39.3
TypeScript version
No response
Additional context
No response
