@ixo/editor 2.16.1 → 2.16.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.
|
@@ -16942,7 +16942,12 @@ var DomainCreatorSignFlowView = ({ editor, block }) => {
|
|
|
16942
16942
|
});
|
|
16943
16943
|
};
|
|
16944
16944
|
updateViewerData();
|
|
16945
|
-
|
|
16945
|
+
const unsubscribe = editor.onChange?.(updateViewerData);
|
|
16946
|
+
const pollInterval = setInterval(updateViewerData, 1e3);
|
|
16947
|
+
return () => {
|
|
16948
|
+
unsubscribe?.();
|
|
16949
|
+
clearInterval(pollInterval);
|
|
16950
|
+
};
|
|
16946
16951
|
}, [editor]);
|
|
16947
16952
|
const { domainCardData, isApproved: isViewerApproved } = viewerData;
|
|
16948
16953
|
const isDataReady = isDomainCardDataReady(domainCardData) && isViewerApproved;
|
|
@@ -20573,4 +20578,4 @@ export {
|
|
|
20573
20578
|
ixoGraphQLClient,
|
|
20574
20579
|
getEntity
|
|
20575
20580
|
};
|
|
20576
|
-
//# sourceMappingURL=chunk-
|
|
20581
|
+
//# sourceMappingURL=chunk-3ER6BXWB.mjs.map
|