Skip to content

Commit

Permalink
fix: enable drawer input reposition if isFullScreen (#8808)
Browse files Browse the repository at this point in the history
  • Loading branch information
NeOMakinG authored Feb 12, 2025
1 parent bc33710 commit de35819
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 de35819

Please sign in to comment.