From 396f644f33cb08696702e7374c0abe4a1e1a68fd Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Tue, 16 Jun 2026 23:33:47 +0200 Subject: [PATCH] Removed chat library session management logic from workflow --- src/App.jsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index fe83bdb..ad4e1cd 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1271,7 +1271,6 @@ export default function App() { composerAttachments, createNewChat, finishCancelableRequest, - getChatLibraryForSession, getChatWorkflowForSession, imageAttachmentUnavailableReason, input, @@ -1453,7 +1452,6 @@ async function createNewChat() { .then(() => { const newSessions = chatSessions.filter(s => s.session_id !== sessionId); setChatSessions(newSessions); - setChatLibraryForSession(sessionId, null) if (activeSessionId === sessionId) { setActiveSessionId(newSessions.length > 0 ? newSessions[0].session_id : null); }