diff --git a/apps/web/src/components/app/agent-type-select.tsx b/apps/web/src/components/app/agent-type-select.tsx
index 98522651..dc66fa3b 100644
--- a/apps/web/src/components/app/agent-type-select.tsx
+++ b/apps/web/src/components/app/agent-type-select.tsx
@@ -20,6 +20,7 @@ type AgentTypeSelectProps = {
onChange: (type: AgentType) => void;
agentTypes: AgentType[];
onOpenChange?: (open: boolean) => void;
+ label?: string;
};
export function AgentTypeSelect({
@@ -27,6 +28,7 @@ export function AgentTypeSelect({
onChange,
agentTypes,
onOpenChange,
+ label = "Type",
}: AgentTypeSelectProps): JSX.Element {
const sortedTypes = useMemo(() => sortAgentTypes(agentTypes), [agentTypes]);
const [open, setOpen] = useState(false);
@@ -46,7 +48,7 @@ export function AgentTypeSelect({
return (
-
+