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
I'm not able to test the component with react-testing-library.
` const [isOpen, setOpen] = useState(false);
function close() { setOpen(false); } const { renderLayer, triggerProps, layerProps, arrowProps } = useLayer({ isOpen, onOutsideClick: close, onDisappear: close, overflowContainer: false, auto: true, });`
when we open popover, immediately its getting closed. So I tried with removing onDisappear props then it works fine.
The text was updated successfully, but these errors were encountered:
I'm not able to test the component with react-testing-library. ` const [isOpen, setOpen] = useState(false); function close() { setOpen(false); } const { renderLayer, triggerProps, layerProps, arrowProps } = useLayer({ isOpen, onOutsideClick: close, onDisappear: close, overflowContainer: false, auto: true, });` when we open popover, immediately its getting closed. So I tried with removing onDisappear props then it works fine.
If it helps, this is only occurring for me when overflowContainer is set to false
overflowContainer
Sorry, something went wrong.
No branches or pull requests
I'm not able to test the component with react-testing-library.
` const [isOpen, setOpen] = useState(false);
when we open popover, immediately its getting closed.
So I tried with removing onDisappear props then it works fine.
The text was updated successfully, but these errors were encountered: