From 48a87b5c1b5ae17596e2c4e3e0ffb086e7d74f43 Mon Sep 17 00:00:00 2001 From: Tanner Linsley Date: Thu, 20 Aug 2026 08:15:59 -0600 Subject: [PATCH] Abort settled notebook AI turns --- src/components/notebook/NotebookAssistant.client.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/notebook/NotebookAssistant.client.tsx b/src/components/notebook/NotebookAssistant.client.tsx index dfb155fea..754b54fb9 100644 --- a/src/components/notebook/NotebookAssistant.client.tsx +++ b/src/components/notebook/NotebookAssistant.client.tsx @@ -1139,6 +1139,7 @@ export function NotebookAssistant({ return 'error' } } finally { + abortController.abort() if (abortRef.current === abortController) abortRef.current = null onFinish?.() }