From 0f5b26c2b86671987cd1bd89a232bede006125e5 Mon Sep 17 00:00:00 2001 From: Ardeman Date: Mon, 10 Mar 2025 17:14:27 +0800 Subject: [PATCH] fix: remove max-height restriction from TextEditor component styling --- app/components/text-editor/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/text-editor/index.tsx b/app/components/text-editor/index.tsx index 98669a4..dad6cf1 100644 --- a/app/components/text-editor/index.tsx +++ b/app/components/text-editor/index.tsx @@ -140,7 +140,7 @@ export const TextEditor = >( editor={editor} id={id ?? generatedId} className={twMerge( - 'prose prose-headings:my-0.5 prose-p:my-0.5 max-h-96 max-w-none cursor-text overflow-y-auto rounded-b-md p-2', + 'prose prose-headings:my-0.5 prose-p:my-0.5 max-w-none cursor-text overflow-y-auto rounded-b-md p-2', inputClassName, )} onClick={() => editor?.commands.focus()}