Increase limit

This commit is contained in:
Ategon 2025-01-19 14:00:11 -05:00
parent 166c9ac876
commit eb58c6c65a

View file

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