From 6b92a5f4dbd8b072527bbf2c01894e63d276471b Mon Sep 17 00:00:00 2001 From: Salman Date: Tue, 20 Feb 2024 04:28:59 +0530 Subject: [PATCH] Update delete key set to org name for github org integration --- .../components/IntegrationsSection/IntegrationsSection.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/views/IntegrationsPage/components/IntegrationsSection/IntegrationsSection.tsx b/frontend/src/views/IntegrationsPage/components/IntegrationsSection/IntegrationsSection.tsx index 0fbd2976c9..d9e14d0308 100644 --- a/frontend/src/views/IntegrationsPage/components/IntegrationsSection/IntegrationsSection.tsx +++ b/frontend/src/views/IntegrationsPage/components/IntegrationsSection/IntegrationsSection.tsx @@ -207,7 +207,7 @@ export const IntegrationsSection = ({ (popUp?.deleteConfirmation.data as TIntegration)?.integration || " " } integration for ${(popUp?.deleteConfirmation.data as TIntegration)?.app || " "}?`} onChange={(isOpen) => handlePopUpToggle("deleteConfirmation", isOpen)} - deleteKey={(popUp?.deleteConfirmation?.data as TIntegration)?.app || ""} + deleteKey={(popUp?.deleteConfirmation?.data as TIntegration)?.app || (popUp?.deleteConfirmation?.data as TIntegration)?.owner || ""} onDeleteApproved={async () => onIntegrationDelete(popUp?.deleteConfirmation.data as TIntegration, () => handlePopUpClose("deleteConfirmation")