Organization_Management : Organization Hierarchy #443

Merged
pramod.mahajan merged 180 commits from Organization_Management into main 2025-09-30 09:07:31 +00:00
2 changed files with 4 additions and 1 deletions
Showing only changes of commit 99eaf92e3f - Show all commits

View File

@ -15,7 +15,10 @@ const Modal = ({
onClose();
}, [disabled, onClose]);
const handleSubmit = useCallback(() => {
if (disabled) return;
onSubmit();
}, [disabled, onSubmit]);
if (!isOpen) return null;