diff --git a/packages/frontend/src/components/MkNoteDetailed.vue b/packages/frontend/src/components/MkNoteDetailed.vue index 493a03b0e1..a4421a8e88 100644 --- a/packages/frontend/src/components/MkNoteDetailed.vue +++ b/packages/frontend/src/components/MkNoteDetailed.vue @@ -465,8 +465,7 @@ function loadQuotes() { noteId: appearNote.id, limit: 30, }).then(res => { - res.filter(item => item.renoteId != null) - quotes.value = res; + quotes.value = res.filter(item => item.renoteId != null); }); }