Replies: 1 comment 3 replies
-
Can you share a minimal reproduction for this? Sounds like the dialog was somehow in a wrong state. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Any idea what can trigger this error?
It happens to me more 100% of the time in the following scenario.
A dialog opens via effect (using an
open
function from the Dialog.Context), then I close it, and then when I change something in my app that triggers the global suspense boundary so I get a black screen for a second (as all app depends on that), I have a blink of the Backdrop once I'm exiting fallback to the content with the backdrop staying on the screen eventually making the site unusable.I thought that it's this effect that gets triggered for some reason and then I get into the weird state of not having Dialog open but Backdrop only. But it's not getting triggered.
What's interesting, is that if I just open this same Dialog using the button trigger, and not the
open
function, and then do the same state transition that I described above, nothing like that happens.Beta Was this translation helpful? Give feedback.
All reactions