style: 대시보드 관리 console.log 주석처리

- TodoWidgetConfigModal: 8개 주석처리
- QueryEditor: 4개 주석처리
- DashboardDesigner: 3개 주석처리
- CanvasElement: 1개 주석처리
- MenuAssignmentModal: 1개 주석처리
- ElementConfigModal: 2개 주석처리
- DashboardSaveModal: 2개 주석처리
- ChartConfigPanel: 1개 주석처리
- Warehouse3DWidget: 2개 주석처리
- DashboardSidebar: list-summary 주석처리

총 34개의 불필요한 console 문 주석처리 완료
This commit is contained in:
leeheejin
2025-10-17 10:38:22 +09:00
parent d948aa3d3d
commit ec0acb3890
10 changed files with 36 additions and 36 deletions

View File

@@ -98,7 +98,7 @@ export function ElementConfigModal({ element, isOpen, onClose, onSave }: Element
setQueryResult(result);
// 쿼리가 변경되었으므로 차트 설정 초기화 (X/Y축 리셋)
console.log("🔄 쿼리 변경 감지 - 차트 설정 초기화");
// console.log("🔄 쿼리 변경 감지 - 차트 설정 초기화");
setChartConfig({});
}, []);
@@ -126,7 +126,7 @@ export function ElementConfigModal({ element, isOpen, onClose, onSave }: Element
showHeader, // 헤더 표시 여부
};
console.log(" 저장할 element:", updatedElement);
// console.log(" 저장할 element:", updatedElement);
onSave(updatedElement);
onClose();