mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 01:18:23 +00:00
Fix for app-environments API service
This commit is contained in:
parent
a2c2aaec54
commit
774fb9e437
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue