-
Notifications
You must be signed in to change notification settings - Fork 81
New issue
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
initialSnap -34px bug #146
Comments
I'm having a similar problem : when the sheet is rendered with open=true, it starts from the top, then slides back to the initialSnap. Looks like a bug to me : it should slide from the bottom. Note that this works with a default open=false and then a dynamic setOpen(true). Here is a sandbox to demonstrate this behaviour : https://codesandbox.io/p/devbox/test-react-modal-sheet-x56rff?file=%2Fapp%2FSnapPoints.tsx%3A15%2C48 Note that it is easily fixed with these three lines : useEffect(() => {
setTimeout(() => setOpen(true), 1)
}, [setOpen]) @0oooooooo0 Is it related to your bug ? If not, I'll raise a new issue :) |
This looks like the same issue. Check out my PR |
Hi @0oooooooo0 and @laem 👋🏻 I commented on the #148 PR that I'm not able to reproduce the -34px issue locally. Does @0oooooooo0 your issue also happen when the sheet is rendered with |
<Sheet snapPoints={[1, 0.7, 0]} initialSnap={1}>
will not open by 0.7, but will open with a value of -34px.
The text was updated successfully, but these errors were encountered: