Skip to content

Commit 8ca2b76

Browse files
author
Doğan Erişen
authored
indentation issue
1 parent 55f9ca5 commit 8ca2b76

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/active-directory/develop/app-resilience-continuous-access-evaluation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ try {
114114
// use the claims challenge to acquire a new access token...
115115
}
116116
} catch(error) {
117-
// handle errors
117+
// ...
118118
}
119119

120120
// helper function to parse the www-authenticate header
@@ -136,9 +136,9 @@ Your app would then use the claims challenge to acquire a new access token for t
136136

137137
```javascript
138138
const tokenRequest = {
139-
claims: window.atob(claimsChallenge), // decode the base64 string
140-
scopes: ['User.Read']
141-
account: msalInstance.getActiveAccount();
139+
claims: window.atob(claimsChallenge), // decode the base64 string
140+
scopes: ['User.Read']
141+
account: msalInstance.getActiveAccount();
142142
};
143143

144144
let tokenResponse;

0 commit comments

Comments
 (0)