Skip to content

Commit

Permalink
fix: try repositionInputs false
Browse files Browse the repository at this point in the history
  • Loading branch information
hyoban committed Dec 25, 2024
1 parent 128c8ca commit 1d0795b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/components/src/ui/sheet/Sheet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export const PresentSheet = forwardRef<SheetRef, PropsWithChildren<PresentSheetP
useImperativeHandle(contentRef, () => contentInnerRef.current!)

return (
<Drawer.Root dismissible={dismissible} {...nextRootProps}>
<Drawer.Root dismissible={dismissible} repositionInputs={false} {...nextRootProps}>
{!!children && <Drawer.Trigger asChild={triggerAsChild}>{children}</Drawer.Trigger>}
<Drawer.Portal>
<Drawer.Content
Expand Down

0 comments on commit 1d0795b

Please sign in to comment.