Skip to content

Commit

Permalink
wip for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
michellebholland committed Oct 17, 2024
1 parent 63b6ca4 commit 08b34e1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/Table/UncontrolledTable.js
Original file line number Diff line number Diff line change
@@ -106,7 +106,9 @@ export default class UncontrolledTable extends React.Component {
});
};

expanded(value) {
expanded = (value) => {
console.log('Calling expanded in UncontrolledTable', value)

Check warning on line 110 in src/components/Table/UncontrolledTable.js

GitHub Actions / test

Unexpected console statement
console.log('some(this.state.expanded, value)', some(this.state.expanded, value));

Check warning on line 111 in src/components/Table/UncontrolledTable.js

GitHub Actions / test

Unexpected console statement
return some(this.state.expanded, value);
}

0 comments on commit 08b34e1

Please sign in to comment.