diff --git a/src/utils/dom.ts b/src/utils/dom.ts index 6dc5c09d..360bd21c 100644 --- a/src/utils/dom.ts +++ b/src/utils/dom.ts @@ -122,7 +122,7 @@ export const splitCommentByBlocks = (text: string): ICommentBlock[] => export const formatCommentText = (author: string, text: string): ICommentBlock[] => text ? splitCommentByBlocks(formatText(text)) : null; -export const formatCellText = (text: string): string => formatTextParagraphs(formatText(text)); +export const formatCellText = (text: string): string => formatTextParagraphs(text); export const getPrettyDate = (date: string): string => { if (differenceInMonths(new Date(), new Date(date)) >= 3) {