diff --git a/ui/admin/app/components/workflow/Workflow.tsx b/ui/admin/app/components/workflow/Workflow.tsx index baf56090..d6fb802b 100644 --- a/ui/admin/app/components/workflow/Workflow.tsx +++ b/ui/admin/app/components/workflow/Workflow.tsx @@ -1,5 +1,4 @@ import { - KeyIcon, Library, List, LockIcon, @@ -21,7 +20,6 @@ import { Button } from "~/components/ui/button"; import { CardDescription } from "~/components/ui/card"; import { ScrollArea } from "~/components/ui/scroll-area"; import { ParamsForm } from "~/components/workflow/ParamsForm"; -import { StringArrayForm } from "~/components/workflow/StringArrayForm"; import { WorkflowProvider, useWorkflow, @@ -99,22 +97,6 @@ function WorkflowContent({ className, onPersistThreadId }: WorkflowProps) { /> -
- - - Credentials - - - - debouncedSetWorkflowInfo({ credentials: values }) - } - itemName="Credential" - placeholder="Enter a credential" - /> -
-
diff --git a/ui/admin/app/lib/model/workflows.ts b/ui/admin/app/lib/model/workflows.ts index 85232b53..dbda0d00 100644 --- a/ui/admin/app/lib/model/workflows.ts +++ b/ui/admin/app/lib/model/workflows.ts @@ -11,7 +11,6 @@ export type WorkflowBase = AgentBase & { steps: Step[]; output: string; env?: WorkflowEnv[]; - credentials?: string[]; }; export type Step = {