From 9c988327fde194ce5de0ddd057efe309e4685731 Mon Sep 17 00:00:00 2001 From: FatttSnake Date: Thu, 31 Oct 2024 11:51:39 +0800 Subject: [PATCH] Refactor(common): Remove unused console log --- src/util/common.tsx | 1 - 1 file changed, 1 deletion(-) 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 }