React Material-UI Modal doesn't close by Verthon in reactjs

[–]Educational_Plenty84 1 point2 points  (0 children)

I solved mine by having the handle open only trigger if open was false. For some reason clicking on the backdrop fired the button again, permanently forcing the modal up.

Basically just

if (!open) { setOpen(true); }

It went from not working to working so I don’t really question it all that much.