npx @mui/envinfo Don't forget to mention which browser you used. Output from `npx @mui/envinfo` goes here. Search keywords: Dialog Modal Bittukr7479 added the status: waiting for maintainer label Nov 18, 2024 Contributor sai6855 commented Nov 18, 2024 Please provide a github or sandb...
I'm experiencing the same issue. I employ two MUI dialogs that are overlaid. When I refresh the page from the second opened dialog, everything continues to function well, but if I don't utilize the disableEnforceFocus prop, an infinite loop with a TrapFocus Error is formed. And if I ...
Using a slightly modified version of material-ui/docs/src/modules/components/DemoSandboxed.js Create a component with a Modal Use that component inside of the component prop Open the modal This is the same no matter how the iFrame is implemented. Code sandbox: https://codesandbox.io/s/dialog-...
Breaking changes [Dialog] Remove the disableBackdropClick prop. It's redundant with the reason argument. <Dialog - disableBackdropClick - onClose={handleClose} + onClose={(event, reason) => { + ...
{ Dialog, DialogTitle, IconButton } from '@mui/material'; +import React, { useEffect } from 'react'; +import { useAuth } from '../context/AuthContext'; +import Notify from './Notify'; + +const Modal = () => { + const { + modal, + setModal, + alert: { location }, + set...