diff --git a/apps/mobile/app/components/list-items/note/index.js b/apps/mobile/app/components/list-items/note/index.js
index 328c11a7c..9f0818da3 100644
--- a/apps/mobile/app/components/list-items/note/index.js
+++ b/apps/mobile/app/components/list-items/note/index.js
@@ -178,16 +178,29 @@ const NoteItem = ({
) : null}
-
- {item.title}
-
+ {compactMode ? (
+
+ {item.title}
+
+ ) : (
+
+ {item.title}
+
+ )}
{item.headline && !compactMode ? (
) : null}
-
- {!isTrash ? (
- <>
- {item.conflicted ? (
-
+ {!isTrash ? (
+ <>
+ {item.conflicted ? (
+
+ ) : null}
+
- ) : null}
-
- {attachmentCount > 0 ? (
- 0 ? (
+
+
+
+ {attachmentCount}
+
+
+ ) : null}
+
+ {item.pinned ? (
+
+ ) : null}
+
+ {item.locked ? (
+
+ ) : null}
+
+ {item.favorite ? (
+
+ ) : null}
+
+ {!isTrash && !compactMode && tags
+ ? tags.map((item) =>
+ item.id ? (
+
- ) : null}
+ Deleted on{" "}
+ {item && item.dateDeleted
+ ? new Date(item.dateDeleted).toISOString().slice(0, 10)
+ : null}
+
- {item.pinned ? (
-
- ) : null}
-
- {item.locked ? (
-
- ) : null}
-
- {item.favorite ? (
-
- ) : null}
-
- {!isTrash && !compactMode && tags
- ? tags.map((item) =>
- item.id ? (
-