Skip to content

Commit 6b19ac3

Browse files
committed
random issue when running build
1 parent 2f6a9fc commit 6b19ac3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/components/ToolsTab.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ const ToolsTab = ({
8282
<span className="text-green-600 font-semibold">Success</span>
8383
)}
8484
</h4>
85-
{structuredResult.content.map((item, index) => (
85+
{structuredResult.content?.map((item, index) => (
8686
<div key={index} className="mb-2">
8787
{item.type === "text" && (
8888
<JsonView data={item.text} isError={isError} />

0 commit comments

Comments
 (0)