educoreapp2 1.0.35 → 1.0.36
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/dist/lib/APIFaker.js +1 -1
- package/package.json +1 -1
package/dist/lib/APIFaker.js
CHANGED
@@ -48,7 +48,7 @@ class APIFaker extends _react.Component {
|
|
48
48
|
let path = this.api + "/" + module + "/" + name;
|
49
49
|
let aa = new _ApiFakerMethods.default();
|
50
50
|
console.log("FAKER", path);
|
51
|
-
return aa.run(module, name, params, success, error);
|
51
|
+
return await aa.run(module, name, params, success, error);
|
52
52
|
}
|
53
53
|
render() {
|
54
54
|
return /*#__PURE__*/_react.default.createElement("div", null);
|