feat: apply prettier and rename variable

This commit is contained in:
Fernando Zanutto 2024-04-23 15:04:22 -03:00
parent f8947d4f49
commit 67af138e5a

View File

@ -41,7 +41,9 @@ export function Modal({
const isTopMostModal = () => { const isTopMostModal = () => {
const openModals = document.getElementsByClassName("modal-container"); const openModals = document.getElementsByClassName("modal-container");
return openModals.length && openModals[openModals.length - 1].id === componentId; return (
openModals.length && openModals[openModals.length - 1].id === componentId
);
}; };
useEffect(() => { useEffect(() => {
@ -63,9 +65,9 @@ export function Modal({
"modal-content-" + componentId "modal-content-" + componentId
); );
const clickInsideContent = modalContent.contains(e.target as Node); const clickedOutsideContent = !modalContent.contains(e.target as Node);
if (!clickInsideContent) { if (clickedOutsideContent) {
handleCloseClick(); handleCloseClick();
} }
}; };