pramod_Task-#399 : Added Access Permission For 'Directory User' Role #160

Merged
pramod.mahajan merged 19 commits from pramod_Task-#399 into Feature_Directory 2025-05-29 17:49:56 +00:00
Showing only changes of commit bc9cbd61f3 - Show all commits

View File

@ -136,7 +136,7 @@ export const useContactNotes = (id, IsActive) => {
useEffect(() => {
const cached = getCachedData("Contact Notes");
if (!cached || cached.contactId !== id) {
fetchContactNotes(id,IsActive);
id && fetchContactNotes(id,IsActive);
} else {
setContactNotes(cached.data);
}