From eb58c6c65a7a28f6f1ca5353be20e7986bc3ff24 Mon Sep 17 00:00:00 2001 From: Ategon <benjamin@barbeau.net> Date: Sun, 19 Jan 2025 14:00:11 -0500 Subject: [PATCH] Increase limit --- src/components/editor/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/editor/index.tsx b/src/components/editor/index.tsx index c56d73a..6f69f99 100644 --- a/src/components/editor/index.tsx +++ b/src/components/editor/index.tsx @@ -42,7 +42,7 @@ type EditorProps = { setContent: (content: string) => void; }; -const limit = 200; +const limit = 32767; export default function Editor({ content, setContent }: EditorProps) { const { theme } = useTheme();