diff --git a/src/components/master/MasterModal.jsx b/src/components/master/MasterModal.jsx index 0a472727..44282be8 100644 --- a/src/components/master/MasterModal.jsx +++ b/src/components/master/MasterModal.jsx @@ -107,33 +107,9 @@ const MasterModal = ({ modaldata, closeModal }) => { ); return ( -
+ > ); }; diff --git a/src/pages/master/MasterPage.jsx b/src/pages/master/MasterPage.jsx index 72710679..3d6295c9 100644 --- a/src/pages/master/MasterPage.jsx +++ b/src/pages/master/MasterPage.jsx @@ -10,6 +10,7 @@ import { getCachedData } from "../../slices/apiDataManager"; import { useHasUserPermission } from "../../hooks/useHasUserPermission"; import { MANAGE_MASTER } from "../../utils/constants"; import { useQueryClient } from "@tanstack/react-query"; +import GlobalModel from "../../components/common/GlobalModel"; const MasterPage = () => { @@ -32,15 +33,6 @@ const MasterPage = () => { setIsCreateModalOpen(false); setModalConfig(null); - // Clean up Bootstrap modal manually - const modalEl = document.getElementById('master-modal'); - modalEl?.classList.remove('show'); - if (modalEl) modalEl.style.display = 'none'; - - document.body.classList.remove('modal-open'); - document.body.style.overflow = 'auto'; - - document.querySelectorAll('.modal-backdrop').forEach((el) => el.remove()); }; const handleModalData = (modalType, item, masterType = selectedMaster) => { @@ -91,8 +83,9 @@ const MasterPage = () => { return ( <> {isCreateModalOpen && ( -Loading...
) : ( -{selectedMaster === "Activity" ? "Activity" : "Name"} |
---|