Removed duplicate field.

This commit is contained in:
Jeremy-Z 2026-05-05 14:20:31 -04:00
parent acf3bab418
commit 30a7cdff9f

View file

@ -63,7 +63,14 @@ export default {
[headerKeys.SESSION_SEQUENCE_NUMBER]: sessionKey
};
const url = cfDistroUrl + endpoint;
var url = cfDistroUrl + endpoint;
if ( endpoint.toLowerCase().includes('coverage/api/') )
{
url = "https://localhost:7249" + endpoint;
console.error("Using local url for coverage endpoint: " + url);
}
axios({
method,
url,