Update api/server/services/GraphApiService.js

Remove trailing whitespace

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
David Rodríguez 2026-01-12 22:51:23 +00:00 committed by GitHub
parent 9a474d515a
commit 7669a8484e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -45,12 +45,12 @@ const createGraphClient = async (accessToken, sub) => {
// Add proxy support if configured
if (process.env.PROXY) {
fetchOptions.dispatcher = new ProxyAgent(process.env.PROXY);
}
}
const graphClient = Client.init({
authProvider: (done) => {
done(null, exchangedToken);
},
fetchOptions,
fetchOptions,
});
return graphClient;