wip: desktop work

This commit is contained in:
Adam 2025-11-03 08:29:08 -06:00
commit 34f11c699e
No known key found for this signature in database
GPG key ID: 9CB48779AF150E75
2 changed files with 29 additions and 11 deletions

View file

@ -37,7 +37,7 @@ export function MessageProgress(props: { assistantMessages: () => AssistantMessa
// resolvedParts().findLast((p) => p?.type === "reasoning")?.text,
// )
const eligibleItems = createMemo(() => {
return resolvedParts().filter((p) => p?.type === "tool" && p.state.status === "completed") as ToolPart[]
return resolvedParts().filter((p) => p?.type === "tool" && p?.state.status === "completed") as ToolPart[]
})
const finishedItems = createMemo<(JSXElement | ToolPart)[]>(() => [
<div class="h-8 w-full" />,