Skip to content

Commit

Permalink
Fix type check
Browse files Browse the repository at this point in the history
  • Loading branch information
GabrielMajeri committed Jan 24, 2025
1 parent a703307 commit f2296b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions prisma/seed-admin.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import msal from "@azure/msal-node";
import { ConfidentialClientApplication } from "@azure/msal-node";
import {
AuthProvider,
AuthProviderCallback,
Expand Down Expand Up @@ -41,7 +41,7 @@ async function acquireAccessToken() {
scopes: [`${MICROSOFT_GRAPH_ENDPOINT}/.default`],
};

const cca = new msal.ConfidentialClientApplication(msalConfig);
const cca = new ConfidentialClientApplication(msalConfig);

return await cca.acquireTokenByClientCredential(tokenRequest);
}
Expand Down

0 comments on commit f2296b7

Please sign in to comment.