Skip to content

Commit 683f28d

Browse files
committed
Added number prefixes to tutorial files to clarify order
1 parent dfb3341 commit 683f28d

File tree

6 files changed

+4
-4
lines changed

6 files changed

+4
-4
lines changed
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,4 +296,4 @@ export default App;
296296

297297
Save all of your changes and refresh the page. Now, the app should look very different.
298298

299-
![A screenshot of the redesigned home page](images/create-app-01.png)
299+
![A screenshot of the redesigned home page](images/create-app-01.png)
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,4 +249,4 @@ At this point your application has an access token, which is sent in the `Author
249249

250250
However, this token is short-lived. The token expires an hour after it is issued. This is where the refresh token becomes useful. The refresh token allows the app to request a new access token without requiring the user to sign in again.
251251

252-
Because the app is using the MSAL library, you do not have to implement any token storage or refresh logic. The `UserAgentApplication` method caches the token in the browser session. The `acquireTokenSilent` method first checks the cached token, and if it is not expired, it returns it. If it is expired, it uses the cached refresh token to obtain a new one. You'll use this method more in the following module.
252+
Because the app is using the MSAL library, you do not have to implement any token storage or refresh logic. The `UserAgentApplication` method caches the token in the browser session. The `acquireTokenSilent` method first checks the cached token, and if it is not expired, it returns it. If it is expired, it uses the cached refresh token to obtain a new one. You'll use this method more in the following module.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,4 +130,4 @@ render() {
130130

131131
This loops through the collection of events and adds a table row for each one. Save the changes and restart the app. Click on the **Calendar** link and the app should now render a table of events.
132132

133-
![A screenshot of the table of events](./images/add-msgraph-01.png)
133+
![A screenshot of the table of events](./images/add-msgraph-01.png)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ You've completed the React Microsoft Graph tutorial. Now that you have a working
44

55
## Feedback
66

7-
Please provide any feedback on this tutorial in the [GitHub repository](https://github.com/microsoftgraph/msgraph-training-reactspa).
7+
Please provide any feedback on this tutorial in the [GitHub repository](https://github.com/microsoftgraph/msgraph-training-reactspa).

0 commit comments

Comments
 (0)