콘솔 로그 제거

This commit is contained in:
Jaeyoung Lee 2025-02-03 10:46:26 +09:00
parent 5ef8ccfc40
commit 6b5d86cd2c

View File

@ -184,8 +184,6 @@ export function useRoofFn() {
}
function moveRoofMaterial(currentMousePos) {
console.log('moveRoofMaterial', currentMousePos)
const roofBase = canvas
.getObjects()
.filter((obj) => obj.name === POLYGON_TYPE.ROOF)
@ -264,7 +262,6 @@ export function useRoofFn() {
obj.fire('polygonMoved')
obj.fire('modified')
} else {
console.log('obj', obj.name, obj.type, obj.startPoint, obj.endPoint)
obj.set({
left: obj.left + deltaX,
top: obj.top + deltaY,