diff --git a/apps/mobile/app/components/list-items/note/index.js b/apps/mobile/app/components/list-items/note/index.js index 9f0818da3..cd0bf9c78 100644 --- a/apps/mobile/app/components/list-items/note/index.js +++ b/apps/mobile/app/components/list-items/note/index.js @@ -298,7 +298,7 @@ const NoteItem = ({ {item.favorite ? ( - {item.conflicted ? ( - - ) : null} + {compactMode ? ( + <> + {item.conflicted ? ( + + ) : null} - {item.locked ? ( - - ) : null} + {item.locked ? ( + + ) : null} - {item.favorite ? ( - - ) : null} + {item.favorite ? ( + + ) : null} - + + + ) : null} - - {item && totalNotes > 1 - ? totalNotes + " notes" - : totalNotes === 1 - ? totalNotes + " note" - : "0 notes"} - + {compactMode ? ( + <> + + {item && totalNotes > 1 + ? totalNotes + " notes" + : totalNotes === 1 + ? totalNotes + " note" + : "0 notes"} + + + ) : null} +