From 4d859d1530b893474ed357b4e1453c34b9f9e2cb Mon Sep 17 00:00:00 2001 From: "hyojun.choi" Date: Tue, 22 Oct 2024 17:47:17 +0900 Subject: [PATCH] =?UTF-8?q?escape=20=EC=B2=98=EB=A6=AC=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/hooks/usePlan.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hooks/usePlan.js b/src/hooks/usePlan.js index dc5286d4..63eeb59c 100644 --- a/src/hooks/usePlan.js +++ b/src/hooks/usePlan.js @@ -115,7 +115,7 @@ export function usePlan() { * DB에 저장된 데이터를 canvas에서 사용할 수 있도록 포맷화 */ const dbToCanvasFormat = (cs) => { - return cs.replace(/##/g, '"') + return cs.replace(/##/g, '"').replace(/∠/g, '∠') } /**