Skip to content

Commit 060267c

Browse files
committed
update comment in function
1 parent a108321 commit 060267c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/active-directory/develop/msal-error-handling-js.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ myMSALObj.acquireTokenSilent(request).then(function (response) {
100100
// call API
101101
}).catch( function (error) {
102102
// call acquireTokenPopup in case of acquireTokenSilent failure
103-
// due interaction required
103+
// due to interaction required
104104
if (error instanceof InteractionRequiredAuthError) {
105105
myMSALObj.acquireTokenPopup(request).then(
106106
function (response) {

0 commit comments

Comments
 (0)