fix: Delete estimate popup is not closing automatically (#2777)

This commit is contained in:
sabith-tu 2023-11-15 14:08:52 +05:30 committed by sriram veeraghanta
parent a675cd5755
commit 1f904e88e1

View File

@ -40,7 +40,13 @@ export const DeleteEstimateModal: React.FC<Props> = observer((props) => {
const estimateId = data?.id!; const estimateId = data?.id!;
projectEstimatesStore.deleteEstimate(workspaceSlug.toString(), projectId.toString(), estimateId).catch((err) => { projectEstimatesStore
.deleteEstimate(workspaceSlug.toString(), projectId.toString(), estimateId)
.then(() => {
setIsDeleteLoading(false);
handleClose();
})
.catch((err) => {
const error = err?.error; const error = err?.error;
const errorString = Array.isArray(error) ? error[0] : error; const errorString = Array.isArray(error) ? error[0] : error;