From 5d9575393482bd2a817cce071e054b76a95f762a Mon Sep 17 00:00:00 2001 From: namansleeps Date: Thu, 13 Jul 2023 12:37:26 +0530 Subject: [PATCH] minor changes --- gui/pages/Content/Agents/Details.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/pages/Content/Agents/Details.js b/gui/pages/Content/Agents/Details.js index 09115ada7..cc713abed 100644 --- a/gui/pages/Content/Agents/Details.js +++ b/gui/pages/Content/Agents/Details.js @@ -94,7 +94,7 @@ export default function Details({agentDetails, runCount, goals, instructions, ag {goals && goals.length > 0 &&
- {agentDetails.goal.map((goal, index) => (
+ {goals.map((goal, index) => (
{index + 1}. {goal || ''}
{index !== goals.length - 1 &&
}
))}