Skip to content

Commit

Permalink
fixed eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
KaleemNeslit committed Dec 25, 2024
1 parent f38a3ae commit 778abca
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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]);

Expand Down

0 comments on commit 778abca

Please sign in to comment.