diff options
| author | Adam <[email protected]> | 2025-12-20 06:15:53 -0600 |
|---|---|---|
| committer | Adam <[email protected]> | 2025-12-20 06:15:59 -0600 |
| commit | 1d159c68583cbc34028677e263c5795518049ca2 (patch) | |
| tree | bebf56ada3167946d4e809371999cf2faf43abb6 /packages | |
| parent | d70639b2561fb569fb727f6286354290f1dedf9b (diff) | |
| download | opencode-1d159c68583cbc34028677e263c5795518049ca2.tar.gz opencode-1d159c68583cbc34028677e263c5795518049ca2.zip | |
fix(desktop): task rendering perf
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/ui/src/components/message-part.tsx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/packages/ui/src/components/message-part.tsx b/packages/ui/src/components/message-part.tsx index 0669f2ec1..9bc6e6550 100644 --- a/packages/ui/src/components/message-part.tsx +++ b/packages/ui/src/components/message-part.tsx @@ -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> ) }, |
