Skip to content

Commit

Permalink
fix: remove console.log (#739)
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidLemayian committed Feb 7, 2023
1 parent e8c2e8a commit c362612
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/utils/data-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -536,13 +536,6 @@ export default class DataManager {
const newGroup = this.columns.find(
(c) => c.tableData.id.toString() === result.draggableId.toString()
);
console.log(
result,
this.columns,
newGroup,
newGroup?.grouping === false,
newGroup?.field
);
if (!newGroup || newGroup.grouping === false || !newGroup.field) {
return;
}
Expand Down

0 comments on commit c362612

Please sign in to comment.