We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d75735 commit cd18af8Copy full SHA for cd18af8
src/withLoadingState.js
@@ -18,9 +18,9 @@ export function withLoadingState(Component) {
18
renderComponent(Component),
19
withPropsOnChange(["networkStatus"], ({ networkStatus }) => {
20
return {
21
- activelyRefetching: activelyRefetching(props.networkStatus),
22
- passivelyRefetching: passivelyRefetching(props.networkStatus),
23
- fetchingMore: fetchingMore(props.networkStatus)
+ activelyRefetching: activelyRefetching(networkStatus),
+ passivelyRefetching: passivelyRefetching(networkStatus),
+ fetchingMore: fetchingMore(networkStatus)
24
};
25
})
26
);
0 commit comments