79721221

Date: 2025-07-31 11:36:21
Score: 3
Natty:
Report link

You could use hideBackdrop={true} , position: 'fixed' .

Also, Is there any reason to use open={true} ?

<Dialog
      open={true} 
      onClose={handleClose}
      hideBackdrop={true} //Proper way to hide backdrop
      PaperProps={{
        style: {
          position: 'fixed',
          top: 0,
          right: 0,
          margin: '20px',
        },
      }}
    >
Reasons:
  • Blacklisted phrase (1): Is there any
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Emily.C