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 766f5d31bf - Show all commits

View File

@ -72,7 +72,7 @@ export const useBuckets = () => {
};
export const useContactProfile = (id) => {
const [conatProfile, setContactProfile] = useState(null);
const [contactProfile, setContactProfile] = useState(null);
const [loading, setLoading] = useState(false);
const [Error, setError] = useState("");
@ -105,7 +105,7 @@ export const useContactProfile = (id) => {
}
}, [id]);
return { conatProfile, loading, Error };
return { contactProfile, loading, Error };
};
export const useContactNotes = (id, IsActive) => {