From 8ce1c1baf98b2314a7ae33cb75c390732f2795ed Mon Sep 17 00:00:00 2001 From: Liam Date: Tue, 23 Apr 2024 04:45:15 +0100 Subject: [PATCH] fix codeblock --- src/app/components/codeBlock.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/app/components/codeBlock.tsx b/src/app/components/codeBlock.tsx index 97255c6..30fb468 100644 --- a/src/app/components/codeBlock.tsx +++ b/src/app/components/codeBlock.tsx @@ -1,7 +1,6 @@ import { ReactElement } from "react"; import SyntaxHighlighter from "react-syntax-highlighter"; import { atomOneDark } from "react-syntax-highlighter/dist/esm/styles/hljs"; -import { cn } from "@/app/common/utils"; import { jetbrainsMono } from "@/app/common/font/font"; type CodeBlockProps = { @@ -14,11 +13,9 @@ type CodeBlockProps = { export function CodeBlock({ code }: CodeBlockProps): ReactElement { return (