Skip to content

Commit

Permalink
fix: improve output check (#6638)
Browse files Browse the repository at this point in the history
* fix: simplify output check and add debug logging in ContentDisplay component

* fix: remove unnecessary console log in ContentDisplay component
  • Loading branch information
anovazzi1 authored Feb 14, 2025
1 parent c62ac0b commit 79d2099
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ export default function ContentDisplay({
language="json"
code={JSON.stringify(content.tool_input, null, 2)}
/>
{content.output !== undefined && (
{content.output && (
<>
<Markdown
remarkPlugins={[remarkGfm]}
Expand Down

0 comments on commit 79d2099

Please sign in to comment.