INSR-10111: Undo accidentally unstashed change

This commit is contained in:
Alex Humphries 2026-06-29 13:08:29 -04:00
parent d106ebb9d7
commit 27df36a1a7

View file

@ -63,7 +63,7 @@ export default {
return new Promise((resolve, reject) => {
const store = useMainStore();
const currentPageName = this.getPageNameByQueryString().toLowerCase();
let cfDistroUrl = applicationConfig.CONSUMER_CF_DISTRO;
const cfDistroUrl = applicationConfig.CONSUMER_CF_DISTRO;
const payloadAndAnalyticsData = { ...payload, AppName: 'ISS' };
const sessionKey = getSessionKeyValue();
const headers = {
@ -75,10 +75,6 @@ export default {
[headerKeys.SESSION_SEQUENCE_NUMBER]: sessionKey
};
console.log(`Making API call to ${endpoint} with method ${method}`);
if (endpoint.toLowerCase().includes(endpoints.RegisterClaim.url.toLowerCase()))
cfDistroUrl = "https://localhost:7249/";
const url = cfDistroUrl + endpoint;
axios({
method,