summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAdam <[email protected]>2025-12-20 06:15:53 -0600
committerAdam <[email protected]>2025-12-20 06:15:59 -0600
commit1d159c68583cbc34028677e263c5795518049ca2 (patch)
treebebf56ada3167946d4e809371999cf2faf43abb6
parentd70639b2561fb569fb727f6286354290f1dedf9b (diff)
downloadopencode-1d159c68583cbc34028677e263c5795518049ca2.tar.gz
opencode-1d159c68583cbc34028677e263c5795518049ca2.zip
fix(desktop): task rendering perf
-rw-r--r--packages/ui/src/components/message-part.tsx14
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>
)
},