fix(desktop): task rendering perf

thinking-toggle-wip
Adam 2025-12-20 06:15:53 -06:00 committed by Aiden Cline
parent 6557fa2e0b
commit 9d75fbd1b2
1 changed files with 7 additions and 7 deletions

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>
)
},