From 1fb8eb9ef15a5c44ae7a9bc586f951ffe4103cb0 Mon Sep 17 00:00:00 2001 From: Kartik Sharma Date: Fri, 26 Sep 2025 16:21:37 +0530 Subject: [PATCH] Create Task popup will open at all the time while submitting. --- src/components/Project/Infrastructure/TaskModel.jsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/components/Project/Infrastructure/TaskModel.jsx b/src/components/Project/Infrastructure/TaskModel.jsx index efa2006f..4bbf1555 100644 --- a/src/components/Project/Infrastructure/TaskModel.jsx +++ b/src/components/Project/Infrastructure/TaskModel.jsx @@ -112,7 +112,7 @@ const TaskModel = ({ project, onSubmit, onClose }) => { const { mutate: CreateTask, isPending } = useManageTask({ onSuccessCallback: (response) => { showToast(response?.message, "success"); - onClose?.(); + // onClose?.(); }, }); useEffect(() => { @@ -356,9 +356,10 @@ const TaskModel = ({ project, onSubmit, onClose }) => {