From 5b3b6904bfc41dc9933eb815594c9427d277814e Mon Sep 17 00:00:00 2001 From: Pramod Mahajan Date: Thu, 15 May 2025 22:58:02 +0530 Subject: [PATCH] updated incorrect API endpoint --- src/repositories/MastersRepository.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/repositories/MastersRepository.jsx b/src/repositories/MastersRepository.jsx index 33761336..7a4ab1f0 100644 --- a/src/repositories/MastersRepository.jsx +++ b/src/repositories/MastersRepository.jsx @@ -52,7 +52,7 @@ export const MasterRespository = { createContactCategory: (data ) => api.post( `/api/master/contact-category`, data ), updateContactCategory: ( id, data ) => api.post( `/api/master/contact-category/${ id }`, data ), - getContactTag: () => api.get( `/api/master/contact-tag` ), + getContactTag: () => api.get( `/api/master/contact-tags` ), createContactTag: (data ) => api.post( `/api/master/contact-tag`, data ), updateContactTag: ( id, data ) => api.post( `/api/master/contact-tag/${ id }`, data )