diff --git a/src/client/components/CodeBlock.tsx b/src/client/components/CodeBlock.tsx
index c4d8e04..ef979dc 100644
--- a/src/client/components/CodeBlock.tsx
+++ b/src/client/components/CodeBlock.tsx
@@ -4,10 +4,10 @@ import { Button } from './ui/button';
import { LuCopy, LuCopyCheck } from 'react-icons/lu';
import { toast } from 'sonner';
import { useTranslation } from '@i18next-toolkit/react';
-import { ScrollBar } from './ui/scroll-area';
export const CodeBlock: React.FC<{
code: string;
+ height?: number;
}> = React.memo((props) => {
const [copied, setCopied] = useState(false);
const { t } = useTranslation();
@@ -22,7 +22,12 @@ export const CodeBlock: React.FC<{
return (
-
+
{props.code}