Skip to content

Commit 1945f34

Browse files
author
Corjen Moll
committed
fix: Remove console.log
1 parent 529b92c commit 1945f34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ class DataSort extends React.Component {
109109
const { searchQuery } = this.isSearchControlled() ? this.props : this.state
110110
const { pages } = this.state
111111
const keys = this.props.searchInKeys || (data && data.length) ? Object.keys(data[0]) : []
112-
console.log({ keys })
112+
113113
// Search & sort data
114114
const searched = searchQuery === '' ? data : matchSorter(data, searchQuery, { keys })
115115
const sorted = sortBy === null ? searched : sortData(searched, sortBy, direction)

0 commit comments

Comments
 (0)