updated note fetching logic, README, test and minor UI change. Also deleted /Diagrams

This commit is contained in:
Christopher Sanden
2026-03-19 17:17:41 +01:00
parent 57daa96be6
commit 3fbc216a58
16 changed files with 822 additions and 284 deletions

View File

@@ -98,7 +98,12 @@ describe("NewNoteScreen", () => {
mockUseNotes.mockReturnValue({
notes: [],
isLoading: false,
isLoadingMoreMyNotes: false,
isLoadingMoreWorkNotes: false,
refreshNotes: jest.fn(),
loadMoreNotes: jest.fn(),
hasMoreMyNotes: false,
hasMoreWorkNotes: false,
fetchNoteById: jest.fn(),
addNote: mockAddNote,
updateNote: jest.fn(),