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();