mirror of
https://github.com/anomalyco/opencode.git
synced 2026-04-28 04:29:42 +00:00
refactor: remove redundant pending check from working memo (#23929)
This commit is contained in:
parent
9730008543
commit
df27baa00d
1 changed files with 1 additions and 1 deletions
|
|
@ -259,7 +259,7 @@ export function MessageTimeline(props: {
|
|||
if (!id) return idle
|
||||
return sync.data.session_status[id] ?? idle
|
||||
})
|
||||
const working = createMemo(() => !!pending() || sessionStatus().type !== "idle")
|
||||
const working = createMemo(() => sessionStatus().type !== "idle")
|
||||
const tint = createMemo(() => messageAgentColor(sessionMessages(), sync.data.agent))
|
||||
|
||||
const [timeoutDone, setTimeoutDone] = createSignal(true)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue