Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/web/src/workbench-templates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions apps/web/test/new-workbench-picker.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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",
);
});

Expand Down
4 changes: 2 additions & 2 deletions packages/workflow-catalog/src/templates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand Down
Loading