diff --git a/pages/vocabulary.js b/pages/vocabulary.js index 8878642..a22385f 100644 --- a/pages/vocabulary.js +++ b/pages/vocabulary.js @@ -1264,9 +1264,7 @@ function search() { let input = document.getElementById('searchbar').value.toLowerCase() let indexID = document.getElementsByClassName('css-f8n5zr') let words = document.getElementsByClassName('css-1oiguqt') - console.log(words.length) for (let i = 0; i < words.length; i++) { - console.log(words[i]) if (!indexID[i].innerHTML.toLowerCase().includes(input)) { words[i].style.display='none' } else {