Skip to content

Commit fc24bcb

Browse files
authored
refactor: remove redundant pending check from working memo (anomalyco#23929)
1 parent ff8a45c commit fc24bcb

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)