env files and faq added

This commit was merged in pull request #6.
This commit is contained in:
victorAnumudu
2023-06-26 18:52:25 +01:00
parent 4127e2cd8e
commit 9a9d62ae36
9 changed files with 106 additions and 6 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(site.user_service_endpoint + "/sitecontact", callData);
let response = await Axios.post(`${process.env.REACT_APP_AUX_ENDPOINT}/sitecontact`, callData);
return response.data.result;
}