From ff281cc6167de3743a25bac03dd2276758477a38 Mon Sep 17 00:00:00 2001 From: inyeong-kang Date: Thu, 14 Sep 2023 15:10:00 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20(#606)=20=EB=B6=88=ED=95=84=EC=9A=94?= =?UTF-8?q?=ED=95=9C=20=EC=A3=BC=EC=84=9D=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/utils/post/formatContentLink.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/frontend/src/utils/post/formatContentLink.tsx b/frontend/src/utils/post/formatContentLink.tsx index 90a652fb1..d3cffa949 100644 --- a/frontend/src/utils/post/formatContentLink.tsx +++ b/frontend/src/utils/post/formatContentLink.tsx @@ -4,7 +4,6 @@ export const linkifyText = (text: string) => { const linkPattern = /\[\[([^[\]]+)\]\]/g; const parts = text.split(linkPattern); - window.console.log(parts); const result = parts.map((part, index) => { if (index % 2 === 1) { @@ -28,8 +27,6 @@ export const linkifyText = (text: string) => { } }); - window.console.log(renderArrayWithStringsAndElements(result)); - return renderArrayWithStringsAndElements(result); };