Fix for app-environments API service

This commit is contained in:
gsmithun4 2023-04-06 18:15:51 +05:30
parent a2c2aaec54
commit 774fb9e437

View file

@ -6,6 +6,6 @@ export const appEnvironmentService = {
};
function getAllEnvironments() {
const requestOptions = { method: 'GET', headers: authHeader() };
const requestOptions = { method: 'GET', headers: authHeader(), credentials: 'include' };
return fetch(`${config.apiUrl}/app-environments`, requestOptions).then(handleResponse);
}