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

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
nousbot-eng 2026-07-17 14:59:51 -04:00 committed by GitHub
parent 29dac61d77
commit bcea5371c8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -61,6 +61,7 @@ function armWatchdog(runtimeId: string) {
if (existing) {
clearTimeout(existing)
}
sessionWatchdogTimers.set(
runtimeId,
setTimeout(() => {
@ -113,6 +114,7 @@ function handleTransition(previous: ClientSessionState | null, next: ClientSessi
if (runtimeId === $activeSessionId.get()) {
setActiveSessionStoredId(next.storedSessionId)
}
clearSettled(previous.storedSessionId)
}
@ -128,6 +130,7 @@ function handleTransition(previous: ClientSessionState | null, next: ClientSessi
if (!storedId) {
return
}
const wasWorking = previous?.busy ?? false
if (next.busy && !wasWorking) {