Skip to content

Commit df27baa

Browse files
authored
refactor: remove redundant pending check from working memo (#23929)
1 parent 9730008 commit df27baa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/app/src/pages/session/message-timeline.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ export function MessageTimeline(props: {
259259
if (!id) return idle
260260
return sync.data.session_status[id] ?? idle
261261
})
262-
const working = createMemo(() => !!pending() || sessionStatus().type !== "idle")
262+
const working = createMemo(() => sessionStatus().type !== "idle")
263263
const tint = createMemo(() => messageAgentColor(sessionMessages(), sync.data.agent))
264264

265265
const [timeoutDone, setTimeoutDone] = createSignal(true)

0 commit comments

Comments
 (0)