Skip to content

Commit 2692ec0

Browse files
committed
site: touchup
1 parent de7f860 commit 2692ec0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

site/src/pages/intro.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,9 @@ This is done via `RemoteDataStore.all(...)`:
105105

106106
Under the hood, the combined store uses the `RemoteData.all(...)` function, which:
107107

108-
- Returns `Pending` if *any* constituent store is `Pending`.
109108
- Returns `No` if *any* store fails. A single “retry” will only re-fetch the failing requests.
110-
- Returns `Yes` with a tuple `[value1, value2, value3]` if *all* succeed.
109+
- Returns `Pending` if *any* constituent store is `Pending`.
110+
- Returns `Yes` with a tuple of all combined values if *all* succeed.
111111
- Manages invalidation states if any store becomes invalidated.
112112

113113
In a render prop, you can
@@ -121,7 +121,7 @@ the results.
121121
The TypeScript compiler (and IDEs) fully understands these combined stores.
122122
You can hover over the tuple items (often with <kbd>Ctrl</kbd> or <kbd>Command</kbd>) to see precise type information.
123123

124-
<video autoPlay controls muted src={typesafeCombine}></video>
124+
<video autoPlay controls muted style={{maxWidth: '100%'}} src={typesafeCombine}></video>
125125

126126
---
127127

0 commit comments

Comments
 (0)