Fixed delete integration copy (#1988)

# What this PR does

Fixed delete integration copy
This commit is contained in:
Rares Mardare 2023-05-23 11:20:03 +03:00 committed by GitHub
parent 129bd98328
commit d43ce506b8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -908,13 +908,13 @@ const IntegrationActions: React.FC<IntegrationActionsProps> = ({ alertReceiveCha
onClick={() => {
setConfirmModal({
isOpen: true,
title: (
<>
title: 'Delete Integration?',
body: (
<Text type="primary">
Are you sure you want to delete <Emoji text={alertReceiveChannel.verbal_name} />{' '}
integration?
</>
integration?{' '}
</Text>
),
body: <>This action cannot be undone.</>,
onConfirm: deleteIntegration,
dismissText: 'Cancel',
confirmText: 'Delete',