Remove console log and comment from updateDisplayedWords
This commit is contained in:
parent
d93f86f75f
commit
95629aac72
|
@ -96,8 +96,6 @@ class App extends Component {
|
||||||
filteredPartsOfSpeech
|
filteredPartsOfSpeech
|
||||||
} = searchConfig;
|
} = searchConfig;
|
||||||
|
|
||||||
console.log('search config', searchConfig);
|
|
||||||
// displayedWords = words;
|
|
||||||
displayedWords = words.filter((word) => {
|
displayedWords = words.filter((word) => {
|
||||||
const wordPartOfSpeech = word.partOfSpeech === '' ? 'Uncategorized' : word.partOfSpeech;
|
const wordPartOfSpeech = word.partOfSpeech === '' ? 'Uncategorized' : word.partOfSpeech;
|
||||||
if (!filteredPartsOfSpeech.includes(wordPartOfSpeech)) {
|
if (!filteredPartsOfSpeech.includes(wordPartOfSpeech)) {
|
||||||
|
|
Loading…
Reference in New Issue