Enhanced the Directory module by adding Notes and Contacts tabs, with view-specific controls, export options, and search functionality for Notes. #215

Merged
ashutosh.nehete merged 21 commits from Kartik_Task#513 into Issues_Jun_3W 2025-06-27 11:43:31 +00:00
Showing only changes of commit 0a6d5746ed - Show all commits

View File

@ -13,7 +13,7 @@ const NotesCardViewDirectory = ({ notes, setNotes, searchText, selectedNoteNames
const fetchNotes = async () => {
setLoading(true);
try {
const response = await DirectoryRepository.GetNotes(1000, 1);
const response = await DirectoryRepository.GetNotes(20, 1);
const fetchedNotes = response.data?.data || [];
setAllNotes(fetchedNotes);
} catch (error) {