Skip to content

Commit f249591

Browse files
committed
Update these URLs and embeds to the TS tags/branches
1 parent fb33d69 commit f249591

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

docs/tutorials/essentials/part-3-data-flow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ To get started, you can open and fork this CodeSandbox:
4545

4646
<iframe
4747
class="codesandbox"
48-
src="https://codesandbox.io/embed/github/reduxjs/redux-essentials-example-app/tree/433b1132560f07c5911432182b6a4047610c25e9/?&fontsize=14&hidenavigation=1&theme=dark&runonclick=1"
48+
src="https://codesandbox.io/embed/github/reduxjs/redux-essentials-example-app/tree/ts-checkpoint-0-setup/?&fontsize=14&hidenavigation=1&theme=dark&runonclick=1"
4949
title="redux-essentials-example-app"
5050
allow="geolocation; microphone; camera; midi; vr; accelerometer; gyroscope; payment; ambient-light-sensor; encrypted-media; usb"
5151
sandbox="allow-modals allow-forms allow-popups allow-scripts allow-same-origin"

docs/tutorials/essentials/part-4-using-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Now that you know the core steps to write Redux logic, we're going to use those
3232

3333
:::info
3434

35-
As a reminder, the code examples focus on the key concepts and changes for each section. See the CodeSandbox projects and the [`tutorial-steps` branch in the project repo](https://github.com/reduxjs/redux-essentials-example-app/tree/tutorial-steps) for the complete changes in the application.
35+
As a reminder, the code examples focus on the key concepts and changes for each section. See the CodeSandbox projects and the [`tutorial-steps-ts` branch in the project repo](https://github.com/reduxjs/redux-essentials-example-app/tree/tutorial-steps-ts) for the complete changes in the application.
3636

3737
:::
3838

docs/tutorials/essentials/part-5-async-logic.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Also, the mock server has been set up to reuse the same random seed each time th
5151

5252
:::info
5353

54-
As a reminder, the code examples focus on the key concepts and changes for each section. See the CodeSandbox projects and the [`tutorial-steps` branch in the project repo](https://github.com/reduxjs/redux-essentials-example-app/tree/tutorial-steps) for the complete changes in the application.
54+
As a reminder, the code examples focus on the key concepts and changes for each section. See the CodeSandbox projects and the [`tutorial-steps-ts` branch in the project repo](https://github.com/reduxjs/redux-essentials-example-app/tree/tutorial-steps-ts) for the complete changes in the application.
5555

5656
:::
5757

@@ -1031,7 +1031,6 @@ const postsSlice = createSlice({
10311031
// Remove `postAdded`
10321032
export const { postUpdated, reactionAdded } = postsSlice.actions
10331033
// highlight-end
1034-
10351034
```
10361035

10371036
### Checking Thunk Results in Components

0 commit comments

Comments
 (0)