fix(desktop): task rendering perf

This commit is contained in:
Adam 2025-12-20 06:15:53 -06:00
parent d70639b256
commit 1d159c6858
No known key found for this signature in database
GPG key ID: 9CB48779AF150E75

View file

@ -463,13 +463,13 @@ ToolRegistry.register({
subtitle: props.input.description,
}}
>
<Show when={props.output}>
{(output) => (
<div data-component="tool-output" data-scrollable>
<Markdown text={output()} />
</div>
)}
</Show>
{/* <Show when={false && props.output}> */}
{/* {(output) => ( */}
{/* <div data-component="tool-output" data-scrollable> */}
{/* <Markdown text={output()} /> */}
{/* </div> */}
{/* )} */}
{/* </Show> */}
</BasicTool>
)
},