We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56b4ae0 commit 617a779Copy full SHA for 617a779
src/app/components/shared/NotificationDrawer.tsx
@@ -25,7 +25,7 @@ export default function NotificationDrawer(props: NotificationDrawerProps) {
25
}
26
27
return (
28
- <Dialog open={props.open} onOpenChange={(open) => !open && props.onClose()} modal>
+ <Dialog open={props.open} onOpenChange={(open) => !open && props.onClose()} modal preventScroll={false}>
29
<Dialog.Portal>
30
<Dialog.Overlay class="drawer-overlay fixed inset-0 bg-black/50 z-[70]" data-testid="notification-overlay" />
31
<Dialog.Content class="drawer-content fixed top-0 right-0 h-full w-80 sm:w-96 bg-base-100 shadow-xl z-[71] flex flex-col">
0 commit comments