diff --git a/src/components/Directory/NotesDirectory.jsx b/src/components/Directory/NotesDirectory.jsx index fab739ee..67c1e239 100644 --- a/src/components/Directory/NotesDirectory.jsx +++ b/src/components/Directory/NotesDirectory.jsx @@ -128,42 +128,40 @@ const NotesDirectory = ({
{" "}
- - + > + Include Deleted Notes + + {!showEditor && (
@@ -225,23 +223,23 @@ const NotesDirectory = ({ )} {!isLoading && notesToDisplay.length > 0 ? notesToDisplay - .slice() - .reverse() - .map((noteItem) => ( - - )) + .slice() + .reverse() + .map((noteItem) => ( + + )) : !isLoading && !showEditor && ( -
{noNotesMessage}
- )} +
{noNotesMessage}
+ )}
);