Skip to content
This repository was archived by the owner on Jul 8, 2025. It is now read-only.

Commit bc6542f

Browse files
committed
.
1 parent a956b9e commit bc6542f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/components/AlertsTable.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ import { AlertConversation } from "@/api/generated";
1818
import { Tooltip, TooltipTrigger } from "@stacklok/ui-kit";
1919
import { getMaliciousPackage } from "@/lib/utils";
2020
import { Search } from "lucide-react";
21-
import { Markdown } from "./Markdown";
2221
import { useAlertSearch } from "@/hooks/useAlertSearch";
2322
import { useCallback } from "react";
2423
import { useSearchParams } from "react-router-dom";
@@ -31,7 +30,7 @@ const wrapObjectOutput = (input: AlertConversation["trigger_string"]) => {
3130
if (typeof data === "string") {
3231
return (
3332
<div className="p-4 line-clamp-1 text-clip">
34-
<Markdown>{data.split("\n")[0] ?? ""}</Markdown>
33+
{data.split("\n")[0] ?? ""}
3534
</div>
3635
);
3736
}

0 commit comments

Comments
 (0)