Skip to content

Commit 8ab5ac1

Browse files
committed
remove null check
1 parent 014ef7d commit 8ab5ac1

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)