fmt(js): npm run fix on merge (#66013)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
nousbot-eng 2026-07-16 20:58:06 -04:00 committed by GitHub
parent 36bf3c2673
commit 56e2ba5e79
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -109,6 +109,7 @@ function Harness({
const localActiveSessionIdRef = useRef<string | null>(
activeSessionId === undefined ? RUNTIME_SESSION_ID : activeSessionId
)
const activeSessionIdRef = activeSessionIdRefProp ?? localActiveSessionIdRef
const selectedStoredSessionIdRef: MutableRefObject<string | null> = selectedStoredSessionIdRefProp ?? {
@ -564,6 +565,7 @@ describe('usePromptActions submit / queue drain semantics', () => {
const updates: { sessionId: string; state: Record<string, unknown>; storedSessionId: null | string | undefined }[] =
[]
const requestGateway = vi.fn(async () => ({}) as never)
let handle: HarnessHandle | null = null