diff --git a/src/util/skeleton-utils.js b/src/util/skeleton-utils.js index af8b7f39..48b6c99b 100644 --- a/src/util/skeleton-utils.js +++ b/src/util/skeleton-utils.js @@ -745,10 +745,10 @@ const createInnerLinesFromSkeleton = (roofId, canvas, skeleton, textMode) => { const movedLines = [] // 조건에 맞는 라인들만 필터링 - const validWallLines = wallLines.filter((wallLine, index) => wallLine.idx - 1 === index); + //const validWallLines = wallLines.filter((wallLine, index) => wallLine.idx - 1 === index); - validWallLines.forEach((wallLine, index) => { + wallLines.forEach((wallLine, index) => { const originalIndex = wallLines.indexOf(wallLine); const roofLine = sortRoofLines[originalIndex];