Skip to content
This repository has been archived by the owner. It is now read-only.

Commit eb073f9

Browse files
authored
Merge pull request #45 from hannesaqua/master
Fix typo in parameter name
2 parents 3d079b6 + 65b1348 commit eb073f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ <h2>Getting an access token with Azure AD B2C and calling a Web API</h2>
8989
return myMSALObj.acquireTokenSilent(tokenRequest).catch(function(error) {
9090
console.log("aquire token popup");
9191
// fallback to interaction when silent call fails
92-
return myMSALObj.acquireTokenPopup(tokenrequest).then(function (tokenResponse) {
92+
return myMSALObj.acquireTokenPopup(tokenRequest).then(function (tokenResponse) {
9393
}).catch(function(error){
9494
logMessage("Failed token acquisition", error);
9595
});

0 commit comments

Comments
 (0)