From 40df12de8631410d67b12294f6e58bb17ba8ea38 Mon Sep 17 00:00:00 2001 From: Pramod Mahajan Date: Thu, 15 May 2025 15:08:55 +0530 Subject: [PATCH] added CreateContactCategory in master modal --- src/components/master/MasterModal.jsx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/components/master/MasterModal.jsx b/src/components/master/MasterModal.jsx index 056451a4..58ae4b16 100644 --- a/src/components/master/MasterModal.jsx +++ b/src/components/master/MasterModal.jsx @@ -13,6 +13,7 @@ import {cacheData, getCachedData} from "../../slices/apiDataManager"; import showToast from "../../services/toastService"; import CreateWorkCategory from "./CreateWorkCategory"; import EditWorkCategory from "./EditWorkCategory"; +import CreateCategory from "./CreateContactCategory"; const MasterModal = ({ modaldata, closeModal }) => { @@ -74,7 +75,6 @@ const MasterModal = ({ modaldata, closeModal }) => { ); } - return (
{ >
- +
{modaldata.modalType === "Application Role" && ( @@ -125,6 +128,9 @@ const MasterModal = ({ modaldata, closeModal }) => { {modaldata.modalType === "Edit-Work Category" && ( )} + {modaldata.modalType === "Contact Category" && ( + + )}