Skip to content

Commit

Permalink
fix: enable drawer input reposition if isFullScreen
Browse files Browse the repository at this point in the history
  • Loading branch information
NeOMakinG committed Feb 12, 2025
1 parent bc33710 commit f51afaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Modal/components/Dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ const DialogWindow: React.FC<DialogProps> = ({
if (isMobile || !isLargerThanMd) {
return (
<Drawer.Root
repositionInputs={false}
repositionInputs={isFullScreen ? true : false}
open={isDialogOpen}
onClose={onClose}
activeSnapPoint={isDisablingPropagation ? snapPoint : undefined}
Expand Down

0 comments on commit f51afaa

Please sign in to comment.