Skip to content

Commit c2c2738

Browse files
committed
fix(mothership): remove integrations from add-resource dropdown
1 parent 9c71774 commit c2c2738

1 file changed

Lines changed: 0 additions & 11 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: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ 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'
2928
import { useFolders } from '@/hooks/queries/folders'
3029
import { useKnowledgeBasesQuery } from '@/hooks/queries/kb/knowledge'
3130
import { useLogsList } from '@/hooks/queries/logs'
@@ -151,16 +150,6 @@ export function useAvailableResources(
151150
isOpen: existingKeys.has(`task:${t.id}`),
152151
})),
153152
},
154-
{
155-
type: 'integration' as const,
156-
items: listIntegrations().map((integration) => ({
157-
id: integration.blockType,
158-
name: integration.name,
159-
iconComponent: integration.icon,
160-
bgColor: integration.bgColor,
161-
isOpen: existingKeys.has(`integration:${integration.blockType}`),
162-
})),
163-
},
164153
{
165154
type: 'log' as const,
166155
items: logs.map((log) => {

0 commit comments

Comments
 (0)