diff --git a/apps/comments/src/store/deletedCommentLimbo.js b/apps/comments/src/store/deletedCommentLimbo.js index 3e511addebb..b97baf9318d 100644 --- a/apps/comments/src/store/deletedCommentLimbo.js +++ b/apps/comments/src/store/deletedCommentLimbo.js @@ -22,7 +22,7 @@ export const useDeletedCommentLimbo = defineStore('deletedCommentLimbo', { }, checkForId(id) { - this.idsInLimbo.includes(id) + return this.idsInLimbo.includes(id) }, }, })