diff --git a/apps/harness/src/components/harness-dashboard.tsx b/apps/harness/src/components/harness-dashboard.tsx index ad1be1f..4cdab6a 100644 --- a/apps/harness/src/components/harness-dashboard.tsx +++ b/apps/harness/src/components/harness-dashboard.tsx @@ -465,6 +465,15 @@ function AgentSelector({ value, onChange }: { value: string; onChange: (id: stri ); } +function Field({ label, children }: { label: string; children: React.ReactNode }) { + return ( +
+ + {children} +
+ ); +} + function NewTaskTab({ onSubmit, mobile, projects, knowledgeDocs }: { onSubmit: (form: TaskForm) => void; mobile: boolean; @@ -492,13 +501,6 @@ function NewTaskTab({ onSubmit, mobile, projects, knowledgeDocs }: { detail: d.path, })); - const Field = ({ label, children }: { label: string; children: React.ReactNode }) => ( -
- - {children} -
- ); - return (