about icons and faq API added

This commit was merged in pull request #7.
This commit is contained in:
victorAnumudu
2023-06-27 04:55:42 +01:00
parent e00f07c1d5
commit 5d45cee0cf
13 changed files with 73 additions and 71 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ import getConfig from './../Config/config'
async function ContactData(callData) {
// debugger;
var site = getConfig()[0];
let response = await Axios.post(`${process.env.REACT_APP_AUX_ENDPOINT}/sitecontact`, callData);
let response = await Axios.post(`${site.user_service_endpoint}/sitecontact`, callData);
return response.data.result;
}