diff --git a/src/pages/article/PracticeArticles.vue b/src/pages/article/PracticeArticles.vue index 107f2a9e..0cd6cb2f 100644 --- a/src/pages/article/PracticeArticles.vue +++ b/src/pages/article/PracticeArticles.vue @@ -303,8 +303,8 @@ function wrong(word: Word) { if (settingStore.ignoreSimpleWord) { if (store.simpleWords.includes(temp)) return } - if (!allWrongWords.has(word.word.toLowerCase())) { - allWrongWords.add(word.word.toLowerCase()) + if (!allWrongWords.has(temp)) { + allWrongWords.add(temp) statStore.wrong++ }