pollination-react-io 0.0.33 → 0.0.34
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/build/index.esm.js +1 -1
- package/build/index.esm.js.map +1 -1
- package/build/index.js +1 -1
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.esm.js
CHANGED
|
@@ -6694,7 +6694,7 @@ var GetModel = function (_a) {
|
|
|
6694
6694
|
fr.onabort = function () { return console.log('file reading was aborted'); };
|
|
6695
6695
|
fr.onerror = function () { return console.log('file reading has failed'); };
|
|
6696
6696
|
fr.onload = function (e) {
|
|
6697
|
-
setParentState(this.result);
|
|
6697
|
+
setParentState({ hbjson: this.result });
|
|
6698
6698
|
};
|
|
6699
6699
|
fr.readAsText(file);
|
|
6700
6700
|
} })
|