File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -105,9 +105,9 @@ This is done via `RemoteDataStore.all(...)`:
105105
106106Under 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
113113In a render prop, you can
@@ -121,7 +121,7 @@ the results.
121121The TypeScript compiler (and IDEs) fully understands these combined stores.
122122You 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
You can’t perform that action at this time.
0 commit comments