Skip to content

Commit f24ea25

Browse files
committed
fix(mothership): comment out integrations from add-resource dropdown
1 parent c2c2738 commit f24ea25

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

  • apps/sim/app/workspace/[workspaceId]/home/components/mothership-view/components/add-resource-dropdown

apps/sim/app/workspace/[workspaceId]/home/components/mothership-view/components/add-resource-dropdown/add-resource-dropdown.tsx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ import type {
2525
MothershipResourceType,
2626
} from '@/app/workspace/[workspaceId]/home/types'
2727
import { formatDate } from '@/app/workspace/[workspaceId]/logs/utils'
28+
// import { listIntegrations } from '@/blocks/integration-matcher'
2829
import { useFolders } from '@/hooks/queries/folders'
2930
import { useKnowledgeBasesQuery } from '@/hooks/queries/kb/knowledge'
3031
import { useLogsList } from '@/hooks/queries/logs'
@@ -142,6 +143,16 @@ export function useAvailableResources(
142143
isOpen: existingKeys.has(`knowledgebase:${kb.id}`),
143144
})),
144145
},
146+
// {
147+
// type: 'integration' as const,
148+
// items: listIntegrations().map((integration) => ({
149+
// id: integration.blockType,
150+
// name: integration.name,
151+
// iconComponent: integration.icon,
152+
// bgColor: integration.bgColor,
153+
// isOpen: existingKeys.has(`integration:${integration.blockType}`),
154+
// })),
155+
// },
145156
{
146157
type: 'task' as const,
147158
items: tasks.map((t) => ({

0 commit comments

Comments
 (0)