From b651aab95958694187781b7c0e07c261d5987884 Mon Sep 17 00:00:00 2001 From: "hyojun.choi" Date: Thu, 11 Sep 2025 09:50:25 +0900 Subject: [PATCH] =?UTF-8?q?module=20=EC=9D=B4=EB=8F=99=20=ED=9B=84?= =?UTF-8?q?=EC=97=90=EB=8F=84=20=ED=9D=A1=EC=B0=A9=EC=A0=90=20=EC=9E=91?= =?UTF-8?q?=EB=8F=99=ED=95=98=EB=8F=84=EB=A1=9D=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/hooks/useEvent.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hooks/useEvent.js b/src/hooks/useEvent.js index dfbe492c..8caa90ea 100644 --- a/src/hooks/useEvent.js +++ b/src/hooks/useEvent.js @@ -213,7 +213,7 @@ export function useEvent() { const modulePoints = [] const modules = canvas.getObjects().filter((obj) => obj.name === POLYGON_TYPE.MODULE) modules.forEach((module) => { - module.points.forEach((point) => { + module.getCurrentPoints().forEach((point) => { modulePoints.push({ x: point.x, y: point.y }) }) })