fix: fixed ESLint errors in GraphApiService

This commit is contained in:
David Rodriguez 2026-03-09 17:26:49 +00:00
parent d921cdb3af
commit 41a4a601bf
2 changed files with 6 additions and 7 deletions

View file

@ -88,7 +88,7 @@ const exchangeTokenForGraphAccess = async (config, accessToken, sub) => {
if (process.env.PROXY && process.env.PROXY.trim()) {
const httpsAgent = new HttpsProxyAgent(process.env.PROXY);
clientOptions[Symbol.for('openid-client.custom.fetch')] = (url, options = {}) => {
return nodeFetch(url, { ...options, agent: httpsAgent });
return nodeFetch(url, { ...options, agent: httpsAgent });
};
}