mobile: fix archive count not shown

This commit is contained in:
Ammar Ahmed
2025-05-19 15:32:34 +05:00
committed by Abdullah Atta
parent 659b937852
commit ccb0c858a2

View File

@@ -80,6 +80,9 @@ function _MenuItem({
case "Monographs":
setItemCount(await db.monographs.all.count());
break;
case "Archive":
setItemCount(await db.notes.archived.count());
break;
case "Trash":
setItemCount((await db.trash.all()).length);
break;