Skip to content

Commit 45ebdfc

Browse files
authored
Merge pull request #1446 from digma-ai/feature/markdown-removed
Removed json markdown convertor
2 parents d66e91d + 2d3964b commit 45ebdfc

File tree

2 files changed

+1
-12
lines changed

2 files changed

+1
-12
lines changed

src/components/Agentic/common/AgentEventsList/AgentEvent/convertToMarkdown.ts

Lines changed: 0 additions & 10 deletions
This file was deleted.

src/components/Agentic/common/AgentEventsList/AgentEvent/index.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { sendUserActionTrackingEvent } from "../../../../../utils/actions/sendUs
22
import { MagicWandIcon } from "../../../../common/icons/16px/MagicWandIcon";
33
import { trackingEvents } from "../../../tracking";
44
import { Accordion } from "./Accordion";
5-
import { convertToMarkdown } from "./convertToMarkdown";
65
import * as s from "./styles";
76
import type { AgentEventProps } from "./types";
87
import { TypingMarkdown } from "./TypingMarkdown";
@@ -49,7 +48,7 @@ export const AgentEvent = ({
4948
return (
5049
<Accordion
5150
summary={<s.ToolName $status={event.status}>{toolName}</s.ToolName>}
52-
content={<TypingMarkdown text={convertToMarkdown(event.message)} />}
51+
content={<TypingMarkdown text={event.message} />}
5352
/>
5453
);
5554
}

0 commit comments

Comments
 (0)