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) + )) ) // ---------------------------------------------------------------------------