From 8f41dcbf359b27b9b362821416824c3721a7766b Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Mon, 29 Sep 2025 20:36:24 -0400 Subject: [PATCH] fix endpoinst --- src/services/siteServices.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/siteServices.js b/src/services/siteServices.js index 1e4e790..c1bffd8 100644 --- a/src/services/siteServices.js +++ b/src/services/siteServices.js @@ -135,7 +135,7 @@ export const getAccountView = (reqData) => { // FUNCTION TO GET SUBSCRIPTIONS VIEW DATA export const getSubscriptionsView = (reqData) => { const postData = { ...reqData } - return getAuxEnd(`/subcription-view`, postData) + return getAuxEnd(`/subscription-view`, postData) }