summaryrefslogtreecommitdiffhomepage
path: root/packages/web/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'packages/web/src/components')
-rw-r--r--packages/web/src/components/Share.tsx6
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/web/src/components/Share.tsx b/packages/web/src/components/Share.tsx
index 93aad6e61..fd828629e 100644
--- a/packages/web/src/components/Share.tsx
+++ b/packages/web/src/components/Share.tsx
@@ -1346,7 +1346,8 @@ export default function Share(props: {
</ErrorPart>
</div>
</Match>
- <Match when={preview()}>
+ {/* Always try to show CodeBlock if preview is available (even if empty string) */}
+ <Match when={typeof preview() === 'string'}>
<div data-part-tool-result>
<ResultsButton
showCopy="Show preview"
@@ -1366,7 +1367,8 @@ export default function Share(props: {
</Show>
</div>
</Match>
- <Match when={toolData()?.result}>
+ {/* Fallback to TextPart if preview is not a string (e.g. undefined) AND result exists */}
+ <Match when={typeof preview() !== 'string' && toolData()?.result}>
<div data-part-tool-result>
<ResultsButton
results={showResults()}