From 68f2dc37f2f012b56a4d566ff96ad15158095f49 Mon Sep 17 00:00:00 2001 From: Abhishek Katiyar Date: Wed, 8 Jan 2025 18:42:04 +0530 Subject: [PATCH] INFRA-4117 | Abhishek | Ensure confirmation popup closes on Yes/No selection --- src/components/common/DeleteConfirmationPopup.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/common/DeleteConfirmationPopup.tsx b/src/components/common/DeleteConfirmationPopup.tsx index 78a4909..4095b92 100644 --- a/src/components/common/DeleteConfirmationPopup.tsx +++ b/src/components/common/DeleteConfirmationPopup.tsx @@ -107,6 +107,7 @@ export const DeleteConfirmationPopup = (props: ConfirmationPopupProps) => { const handleDelete = () => { if (deleteFromManifest) { onDelete(); + props.handleClose(); submitForm(); } else { deleteK8sResource();