chore: comment to detail archived count

This commit is contained in:
Eli Bosley
2025-01-14 16:47:33 -05:00
parent 16f00a0d8c
commit 8d386043ae

View File

@@ -42,6 +42,7 @@ const overview = computed(() => {
return result.value.notifications.overview;
});
/** This recalculates the archived count due to notifications going to archived + unread when they are in an Unread state. */
const readArchivedCount = computed(() => {
if (!overview.value) return 0;
const { archive, unread } = overview.value;