wip: desktop work

This commit is contained in:
Adam 2025-10-30 10:33:45 -05:00
commit dce287a42d
No known key found for this signature in database
GPG key ID: 9CB48779AF150E75
6 changed files with 42 additions and 45 deletions

View file

@ -55,11 +55,7 @@ export function AssistantMessageDisplay(props: { message: AssistantMessage; part
return x.type !== "tool" || (x as ToolPart).tool !== "todoread"
})
})
return (
<div data-component="assistant-message">
<For each={filteredParts()}>{(part) => <Part part={part} message={props.message} />}</For>
</div>
)
return <For each={filteredParts()}>{(part) => <Part part={part} message={props.message} />}</For>
}
export function UserMessageDisplay(props: { message: UserMessage; parts: PartType[] }) {