diff --git a/src/util/common.tsx b/src/util/common.tsx index f88f0d7..1ac7956 100644 --- a/src/util/common.tsx +++ b/src/util/common.tsx @@ -215,7 +215,6 @@ const substringByByte = (str: string, start: number, length: number) => { } export const omitTextByByte = (text: string, length: number) => { - console.log(getByteLength(text)) if (getByteLength(text) <= length) { return text }