We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
open
For example if some logic close drawer and open it again by change of open variable state - drawer does not open:
const [open, setOpen] = useState(true); useEffect(() => { setOpen(false); setTimeout(() => { setOpen(true); }, 100); // try different values }, []);
In my case drawer with "Try again" button closes after click on it, then processes retry and opens drawer if error still exists
The text was updated successfully, but these errors were encountered:
looks like it problem only on preact https://codesandbox.io/p/sandbox/young-architecture-6t4dzs
preact
Sorry, something went wrong.
preactjs/preact#4216
No branches or pull requests
For example if some logic close drawer and open it again by change of
open
variable state - drawer does not open:In my case drawer with "Try again" button closes after click on it, then processes retry and opens drawer if error still exists
The text was updated successfully, but these errors were encountered: