diff --git a/src/backend/base/langflow/graph/vertex/base.py b/src/backend/base/langflow/graph/vertex/base.py index 30c370687..3e1db9063 100644 --- a/src/backend/base/langflow/graph/vertex/base.py +++ b/src/backend/base/langflow/graph/vertex/base.py @@ -660,11 +660,10 @@ class Vertex: if len(result) == 2: self._built_object, self.artifacts = result elif len(result) == 3: - import pdb; pdb.set_trace() self._custom_component, self._built_object, self.artifacts = result self.artifacts_raw = self.artifacts.get("raw", None) self.artifacts_type = self.artifacts.get("type", None) or ArtifactType.UNKNOWN.value - self.logs = build_log(self) + self.logs = build_logs(self) else: self._built_object = result diff --git a/src/frontend/src/modals/IOModal/components/chatView/chatMessage/index.tsx b/src/frontend/src/modals/IOModal/components/chatView/chatMessage/index.tsx index 5485cc69f..49939da08 100644 --- a/src/frontend/src/modals/IOModal/components/chatView/chatMessage/index.tsx +++ b/src/frontend/src/modals/IOModal/components/chatView/chatMessage/index.tsx @@ -116,19 +116,19 @@ export default function ChatMessage({