Skip to content

Commit f25649d

Browse files
tofikwestclaude
andcommitted
fix(integrations): hide AI Agent integrations from integrations list
These are not real integrations — they are AI agent-based checks that don't have OAuth connections or user-facing configuration. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 0ad7d7a commit f25649d

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

apps/app/src/app/(app)/[orgId]/integrations/components/PlatformIntegrations.tsx

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -279,12 +279,8 @@ export function PlatformIntegrations({ className, taskTemplates }: PlatformInteg
279279
return a.provider.name.localeCompare(b.provider.name);
280280
});
281281

282-
const customIntegrations: UnifiedIntegration[] = INTEGRATIONS.map((integration) => ({
283-
type: 'custom' as const,
284-
integration,
285-
}));
286-
287-
const allIntegrations = [...platformIntegrations, ...customIntegrations];
282+
// AI Agent integrations are hidden — they are not real integrations
283+
const allIntegrations = [...platformIntegrations];
288284
if (vendorNames.size === 0) {
289285
return allIntegrations;
290286
}

0 commit comments

Comments
 (0)