Skip to content

Commit 437d606

Browse files
authored
Update hasBeenReady
1 parent e54e513 commit 437d606

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lib/withReactiveQuery.js

+4
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ export default function withReactiveContainer(handler, config, QueryComponent) {
2828
});
2929

3030
const isReady = subscriptionHandle.ready();
31+
32+
if (!loadOnRefetch && !hasBeenReady && isReady) {
33+
hasBeenReady = true;
34+
}
3135

3236
const data = query.fetch();
3337
const isLoading = loadOnRefetch ? !isReady : !hasBeenReady && !isReady;

0 commit comments

Comments
 (0)