fix(comments): explicitly return limbo status of comment

Otherwise, the `checkForId` function returns `undefined` regardless of
whether the comment is in limbo or not.

Signed-off-by: Edward Ly <contact@edward.ly>
This commit is contained in:
Edward Ly 2025-09-23 23:03:21 -07:00
parent 4d99e4bbaf
commit eb65bd33a4
No known key found for this signature in database
GPG key ID: 62EA9B12D5B3AC47

View file

@ -22,7 +22,7 @@ export const useDeletedCommentLimbo = defineStore('deletedCommentLimbo', {
},
checkForId(id) {
this.idsInLimbo.includes(id)
return this.idsInLimbo.includes(id)
},
},
})