We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e99d706 commit e51918eCopy full SHA for e51918e
demos/03-add-msgraph/graph-tutorial/src/App.js
@@ -16,8 +16,7 @@ class App extends Component {
16
17
this.userAgentApplication = new UserAgentApplication({
18
auth: {
19
- clientId: config.appId,
20
- redirectUri: "http://localhost:3000",
+ clientId: config.appId
21
},
22
cache: {
23
cacheLocation: "localStorage",
@@ -83,7 +82,7 @@ class App extends Component {
83
82
await this.userAgentApplication.loginPopup(
84
{
85
scopes: config.scopes,
86
- prompt: "select_account",
+ prompt: "select_account"
87
});
88
await this.getUserProfile();
89
}
0 commit comments