diff --git a/docs/tutorials/essentials/part-3-data-flow.md b/docs/tutorials/essentials/part-3-data-flow.md index 630ee94201..5519bcebba 100644 --- a/docs/tutorials/essentials/part-3-data-flow.md +++ b/docs/tutorials/essentials/part-3-data-flow.md @@ -643,6 +643,16 @@ Remember, **the Redux store should only contain data that's considered "global" ## What You've Learned +We've set up the basics of a Redux app - store, slice with reducers, and UI to dispatch actions. Here's what the app looks like so far: + + + Let's recap what you've learned in this section: :::tip Summary @@ -664,16 +674,6 @@ Let's recap what you've learned in this section: ::: -Here's what the app looks like so far: - - - ## What's Next? Now that you know the basic Redux data flow, move on to [Part 4: Using Redux Data](./part-4-using-data.md), where we'll add some additional functionality to our app and see examples of how to work with the data that's already in the store. diff --git a/docs/tutorials/essentials/part-4-using-data.md b/docs/tutorials/essentials/part-4-using-data.md index 7ec735133e..af7ab4ef87 100644 --- a/docs/tutorials/essentials/part-4-using-data.md +++ b/docs/tutorials/essentials/part-4-using-data.md @@ -1474,7 +1474,7 @@ Here's what our app looks like after all these changes: