updated method for update contact category

This commit is contained in:
pramod mahajan 2025-09-10 18:52:09 +05:30
parent 691fd9208f
commit ebab03dc9f

View File

@ -61,7 +61,7 @@ export const MasterRespository = {
createContactCategory: (data) =>
api.post(`/api/master/contact-category`, data),
updateContactCategory: (id, data) =>
api.put(`/api/master/contact-category/edit/${id}`, data),
api.post(`/api/master/contact-category/edit/${id}`, data),
getContactTag: () => api.get(`/api/master/contact-tags`),
createContactTag: (data) => api.post(`/api/master/contact-tag`, data),