14086 Amend copy for SIPs

This commit is contained in:
2025-02-21 09:18:14 +00:00
parent 804f3a6f66
commit baa1f7c4f3
10 changed files with 59 additions and 35 deletions
+2 -2
View File
@@ -301,7 +301,7 @@ export const getBasicDNSURLSearch = (searchString) => {
});
};
export const getSIPSEvents = (caseid) => {
export const getSIPSEvents = async (caseid) => {
return axios
.get(BASE_URL + "/api/endpoint/getsipsevents_api?caseid=" + caseid)
.then((res) => {
@@ -389,7 +389,7 @@ export const getDNSCoords = () => {
});
};
export const getDNSList = (searchString) => {
export const getDNSList = async (searchString) => {
return axios
.get(BASE_URL + "/api/endpoint/getdnslist_api")
.then((res) => res.data)