fix(react/dialogs): unnecessary listeners on modal render

This commit is contained in:
Elian Doran 2025-08-06 20:54:29 +03:00
parent bde270b73f
commit c0d3027e65
No known key found for this signature in database

View File

@ -71,7 +71,7 @@ export default function Modal({ children, className, size, title, header, footer
modalElement.removeEventListener("hidden.bs.modal", onHidden);
}
};
});
}, [ ]);
}
const dialogStyle: CSSProperties = {};