From 26480e6c57c3558442a73c2dffe313996b19417f Mon Sep 17 00:00:00 2001 From: nousbot-eng Date: Sun, 19 Jul 2026 21:10:16 -0400 Subject: [PATCH] fmt(js): `npm run fix` on merge (#67793) Co-authored-by: github-actions[bot] --- apps/desktop/src/store/session-states.ts | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/apps/desktop/src/store/session-states.ts b/apps/desktop/src/store/session-states.ts index b2e9da9c0ecc..de9a50c2431f 100644 --- a/apps/desktop/src/store/session-states.ts +++ b/apps/desktop/src/store/session-states.ts @@ -215,13 +215,21 @@ const storedIds = (states: Record, 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) + )) ) // ---------------------------------------------------------------------------