diff --git a/apps/sim/app/workspace/[workspaceId]/home/home.tsx b/apps/sim/app/workspace/[workspaceId]/home/home.tsx index b3bef698d2f..3541f001437 100644 --- a/apps/sim/app/workspace/[workspaceId]/home/home.tsx +++ b/apps/sim/app/workspace/[workspaceId]/home/home.tsx @@ -309,11 +309,12 @@ export function Home({ chatId, userName, userId, initialResourceId = null }: Hom
-
+ {/* Asymmetric padding biases the group up so the full cluster (heading + input + suggestions) sits at the optical center */} +

What should we get done{firstName ? `, ${firstName}` : ''}?

-
+
- initialViewUserInputRef.current?.populatePrompt(prompt)} - /> + {/* Anchored out of flow so expanding/collapsing never shifts the centered input */} +
+ initialViewUserInputRef.current?.populatePrompt(prompt)} + /> +
diff --git a/apps/sim/app/workspace/[workspaceId]/integrations/integrations.tsx b/apps/sim/app/workspace/[workspaceId]/integrations/integrations.tsx index fc2ccf2b660..6c077e94dd6 100644 --- a/apps/sim/app/workspace/[workspaceId]/integrations/integrations.tsx +++ b/apps/sim/app/workspace/[workspaceId]/integrations/integrations.tsx @@ -54,6 +54,7 @@ const INTEGRATION_BY_LOWER_NAME: ReadonlyMap = new Map( const ALL_CATEGORY_SECTIONS: readonly { label: string; integrations: Integration[] }[] = (() => { const grouped = new Map() for (const integration of INTEGRATIONS) { + if (!integration.integrationType) continue const bucket = grouped.get(integration.integrationType) if (bucket) bucket.push(integration) else grouped.set(integration.integrationType, [integration]) diff --git a/apps/sim/lib/integrations/integrations.json b/apps/sim/lib/integrations/integrations.json index 7d2d122cc84..b6ca393af8b 100644 --- a/apps/sim/lib/integrations/integrations.json +++ b/apps/sim/lib/integrations/integrations.json @@ -9539,7 +9539,7 @@ "triggerCount": 0, "authType": "api-key", "category": "tools", - "integrationTypes": ["sales"], + "integrationType": "sales", "tags": ["enrichment", "sales-engagement"] }, { @@ -9791,7 +9791,7 @@ "triggerCount": 0, "authType": "api-key", "category": "tools", - "integrationTypes": ["sales"], + "integrationType": "sales", "tags": ["enrichment", "sales-engagement"] }, { @@ -15180,7 +15180,7 @@ "triggerCount": 0, "authType": "api-key", "category": "tools", - "integrationTypes": ["sales"], + "integrationType": "sales", "tags": ["enrichment", "sales-engagement"] }, {