Remove console log and comment from updateDisplayedWords

This commit is contained in:
Robbie Antenesse 2017-12-22 12:27:01 -07:00
parent d93f86f75f
commit 95629aac72
1 changed files with 1 additions and 3 deletions

View File

@ -95,9 +95,7 @@ class App extends Component {
ignoreDiacritics,
filteredPartsOfSpeech
} = searchConfig;
console.log('search config', searchConfig);
// displayedWords = words;
displayedWords = words.filter((word) => {
const wordPartOfSpeech = word.partOfSpeech === '' ? 'Uncategorized' : word.partOfSpeech;
if (!filteredPartsOfSpeech.includes(wordPartOfSpeech)) {