From 434b2779e8b562bd18f7f33ee54ea040e65568e4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 30 Aug 2025 13:47:45 +0000 Subject: [PATCH 1/2] Initial plan From 40840fc0b53da7de7343448ffd80019591548540 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 30 Aug 2025 13:52:50 +0000 Subject: [PATCH 2/2] Fix TypeScript errors in frontend build Co-authored-by: phact <1313220+phact@users.noreply.github.com> --- frontend/src/contexts/chat-context.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/contexts/chat-context.tsx b/frontend/src/contexts/chat-context.tsx index c77fa2ea..cc734d99 100644 --- a/frontend/src/contexts/chat-context.tsx +++ b/frontend/src/contexts/chat-context.tsx @@ -20,6 +20,7 @@ interface ConversationData { messages: ConversationMessage[] endpoint: EndpointType response_id: string + title: string [key: string]: unknown } @@ -32,7 +33,7 @@ interface ChatContextType { chat: string | null langflow: string | null } - setPreviousResponseIds: (ids: { chat: string | null; langflow: string | null }) => void + setPreviousResponseIds: (ids: { chat: string | null; langflow: string | null } | ((prev: { chat: string | null; langflow: string | null }) => { chat: string | null; langflow: string | null })) => void refreshConversations: () => void refreshTrigger: number loadConversation: (conversation: ConversationData) => void