diff --git a/packages/commonwealth/client/scripts/views/components/react_quill_editor/quill_formatted_text.tsx b/packages/commonwealth/client/scripts/views/components/react_quill_editor/quill_formatted_text.tsx index f7c82544c54..974ae260c98 100644 --- a/packages/commonwealth/client/scripts/views/components/react_quill_editor/quill_formatted_text.tsx +++ b/packages/commonwealth/client/scripts/views/components/react_quill_editor/quill_formatted_text.tsx @@ -52,9 +52,6 @@ export const QuillFormattedText = ({ const exceedsMaxChars = maxChars && maxChars < getTextFromDelta(doc).length; const exceedsCutoffLines = cutoffLines && cutoffLines < countLinesQuill(doc); - - console.log({ exceedsMaxChars, exceedsCutoffLines }); - return exceedsMaxChars || exceedsCutoffLines; }, [maxChars, cutoffLines, doc, userExpand]);