diff --git a/apps/web/src/workbench-templates.ts b/apps/web/src/workbench-templates.ts index 1ec38c5a..387c217d 100644 --- a/apps/web/src/workbench-templates.ts +++ b/apps/web/src/workbench-templates.ts @@ -26,9 +26,9 @@ export const WORKBENCH_TEMPLATES: readonly WorkbenchTemplate[] = [ }, { id: "due-diligence", - title: "Research & due diligence", + title: "Due Diligence", promise: - "Scout researches the web and what your team already knows, and saves what it finds so you can pick it up later.", + "Scout checks a company, deal, or vendor against the web and what your team already knows, and saves what it finds so you can pick it up later.", }, { id: "blank", diff --git a/apps/web/test/new-workbench-picker.test.tsx b/apps/web/test/new-workbench-picker.test.tsx index 881e6747..959a420f 100644 --- a/apps/web/test/new-workbench-picker.test.tsx +++ b/apps/web/test/new-workbench-picker.test.tsx @@ -182,11 +182,11 @@ describe("NewWorkbenchPickerRoute", () => { ); expect(radios.length).toBe(3); const dueDiligence = radios.find((row) => - row.textContent?.includes("Research & due diligence"), + row.textContent?.includes("Due Diligence"), ); expect(dueDiligence).not.toBeUndefined(); expect(dueDiligence?.textContent).toContain( - "Scout researches the web and what your team already knows", + "Scout checks a company, deal, or vendor", ); }); diff --git a/packages/workflow-catalog/src/templates.ts b/packages/workflow-catalog/src/templates.ts index d406f494..cc7e4f52 100644 --- a/packages/workflow-catalog/src/templates.ts +++ b/packages/workflow-catalog/src/templates.ts @@ -303,9 +303,9 @@ export const CODE_REVIEW_TEMPLATE: WorkbenchTemplateManifest = { */ export const DUE_DILIGENCE_TEMPLATE: WorkbenchTemplateManifest = { id: "due-diligence", - title: "Research & due diligence", + title: "Due Diligence", promise: - "Scout researches the web and what your team already knows, and saves what it finds so you can pick it up later.", + "Scout checks a company, deal, or vendor against the web and what your team already knows, and saves what it finds so you can pick it up later.", blocks: [], requiredConnections: [], optionalConnections: ["exa"],