제어관리 로그 노드 제거

This commit is contained in:
kjs
2025-10-23 11:31:31 +09:00
parent e934cc945b
commit b66b7c66f0
3 changed files with 1 additions and 15 deletions

View File

@@ -87,11 +87,7 @@ export const TablesPanel: React.FC<TablesPanelProps> = ({
...table,
columns: table.columns.filter((col) => {
const columnKey = `${table.tableName}.${col.columnName}`;
const isPlaced = placedColumns.has(columnKey);
if (isPlaced) {
console.log("🚫 필터링된 컬럼:", columnKey);
}
return !isPlaced;
return !placedColumns.has(columnKey);
}),
}));