@credithub/harlan-components 1.18.1 → 1.18.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/cjs/index.js
CHANGED
|
@@ -64776,6 +64776,11 @@ var useChartData = function (documento) {
|
|
|
64776
64776
|
}
|
|
64777
64777
|
return [];
|
|
64778
64778
|
}, [ctxProtestos]);
|
|
64779
|
+
React.useEffect(function () {
|
|
64780
|
+
if (liveQueriesIsFinish) {
|
|
64781
|
+
refetch();
|
|
64782
|
+
}
|
|
64783
|
+
}, [liveQueriesIsFinish]);
|
|
64779
64784
|
React.useEffect(function () {
|
|
64780
64785
|
if (!isLoading &&
|
|
64781
64786
|
!queryError &&
|
|
@@ -31,6 +31,11 @@ var useChartData = function (documento) {
|
|
|
31
31
|
}
|
|
32
32
|
return [];
|
|
33
33
|
}, [ctxProtestos]);
|
|
34
|
+
useEffect(function () {
|
|
35
|
+
if (liveQueriesIsFinish) {
|
|
36
|
+
refetch();
|
|
37
|
+
}
|
|
38
|
+
}, [liveQueriesIsFinish]);
|
|
34
39
|
useEffect(function () {
|
|
35
40
|
if (!isLoading &&
|
|
36
41
|
!queryError &&
|