From 56e2ba5e7949efa8bca4934a6b121d4e6f4ff10f Mon Sep 17 00:00:00 2001 From: nousbot-eng Date: Thu, 16 Jul 2026 20:58:06 -0400 Subject: [PATCH] fmt(js): `npm run fix` on merge (#66013) Co-authored-by: github-actions[bot] --- .../src/app/session/hooks/use-prompt-actions/index.test.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/desktop/src/app/session/hooks/use-prompt-actions/index.test.tsx b/apps/desktop/src/app/session/hooks/use-prompt-actions/index.test.tsx index f27d7fa464e1..a06ee1294c08 100644 --- a/apps/desktop/src/app/session/hooks/use-prompt-actions/index.test.tsx +++ b/apps/desktop/src/app/session/hooks/use-prompt-actions/index.test.tsx @@ -109,6 +109,7 @@ function Harness({ const localActiveSessionIdRef = useRef( activeSessionId === undefined ? RUNTIME_SESSION_ID : activeSessionId ) + const activeSessionIdRef = activeSessionIdRefProp ?? localActiveSessionIdRef const selectedStoredSessionIdRef: MutableRefObject = selectedStoredSessionIdRefProp ?? { @@ -564,6 +565,7 @@ describe('usePromptActions submit / queue drain semantics', () => { const updates: { sessionId: string; state: Record; storedSessionId: null | string | undefined }[] = [] + const requestGateway = vi.fn(async () => ({}) as never) let handle: HarnessHandle | null = null