diff --git a/langgraph/src/components/ChatInput.tsx b/langgraph/src/components/ChatInput.tsx index e205cb3..5bdb58b 100644 --- a/langgraph/src/components/ChatInput.tsx +++ b/langgraph/src/components/ChatInput.tsx @@ -15,7 +15,6 @@ interface ChatInputProps { sourceLabel: string | null; setSourceLabel: (v: string | null) => void; concurrentStatus: "idle" | "generating" | "stopping" | "cancelling"; - setConcurrentStatus: (s: "idle" | "generating" | "stopping" | "cancelling") => void; onSubmit: (e: React.FormEvent) => void; onStop: () => void; onPaste: (e: React.ClipboardEvent) => void; diff --git a/langgraph/src/components/ChatMessages.tsx b/langgraph/src/components/ChatMessages.tsx index 72686d4..1f9910d 100644 --- a/langgraph/src/components/ChatMessages.tsx +++ b/langgraph/src/components/ChatMessages.tsx @@ -305,9 +305,9 @@ export function ChatMessages({ return (