We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65f4b87 commit 95abc27Copy full SHA for 95abc27
apps/app/src/app/(app)/[orgId]/tasks/[taskId]/components/TaskIntegrationChecks.tsx
@@ -766,9 +766,13 @@ export function TaskIntegrationChecks({
766
<AlertDialogDescription>
767
{disconnectTarget ? (
768
<>
769
- <strong>{disconnectTarget.integrationName}</strong>
+ <strong>
770
+ {disconnectTarget.integrationName ||
771
+ disconnectTarget.checkName}
772
+ </strong>
773
{disconnectTarget.checkName !==
- disconnectTarget.integrationName && (
774
+ (disconnectTarget.integrationName ||
775
+ disconnectTarget.checkName) && (
776
777
{' '}
778
(<strong>{disconnectTarget.checkName}</strong> check)
0 commit comments