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

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
nousbot-eng 2026-07-19 21:10:16 -04:00 committed by GitHub
parent 04113b5a89
commit 26480e6c57
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -215,13 +215,21 @@ const storedIds = (states: Record<string, ClientSessionState>, pred: (s: ClientS
let workingIds: readonly string[] = []
export const $workingSessionIds = computed(
$sessionStates,
states => (workingIds = stableArray(workingIds, storedIds(states, s => s.busy)))
states =>
(workingIds = stableArray(
workingIds,
storedIds(states, s => s.busy)
))
)
let attentionIds: readonly string[] = []
export const $attentionSessionIds = computed(
$sessionStates,
states => (attentionIds = stableArray(attentionIds, storedIds(states, s => s.needsInput)))
states =>
(attentionIds = stableArray(
attentionIds,
storedIds(states, s => s.needsInput)
))
)
// ---------------------------------------------------------------------------