Skip to content

Commit 9fbe8a7

Browse files
authored
Update AuthCodeMSALBrowserAuthenticationProvider.md
I noticed these other things after my original PR, my apologies for this rapid follow-up!
1 parent f3e9ff3 commit 9fbe8a7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/AuthCodeMSALBrowserAuthenticationProvider.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ Using npm:
3636

3737
const options: AuthCodeMSALBrowserAuthenticationProviderOptions = {
3838
account: account, // the AccountInfo instance to acquire the token for.
39-
interactionType: InteractionType.PopUp , // msal-browser InteractionType
39+
interactionType: InteractionType.Popup, // msal-browser InteractionType
4040
scopes: ["user.read", "mail.send"] // example of the scopes to be passed
41-
}
41+
};
4242

4343
// Pass the PublicClientApplication instance from step 2 to create AuthCodeMSALBrowserAuthenticationProvider instance
44-
const authProvider: new AuthCodeMSALBrowserAuthenticationProvider(publicClientApplication, options),
44+
const authProvider: new AuthCodeMSALBrowserAuthenticationProvider(publicClientApplication, options);
4545

4646

4747
// Initialize the Graph client

0 commit comments

Comments
 (0)