dce-reactkit 3.3.2 → 3.3.3-beta.1
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/cjs/index.js +1 -1
- package/dist/esm/index.js +1 -1
- package/package.json +1 -1
- package/src/client/initClient.tsx +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -564,7 +564,7 @@ const getSendRequest = () => __awaiter(void 0, void 0, void 0, function* () {
|
|
|
564
564
|
let timedOut = false;
|
|
565
565
|
yield Promise.all([
|
|
566
566
|
(() => __awaiter(void 0, void 0, void 0, function* () {
|
|
567
|
-
yield waitMs(
|
|
567
|
+
yield waitMs(5000);
|
|
568
568
|
timedOut = true;
|
|
569
569
|
}))(),
|
|
570
570
|
initialized,
|
package/dist/esm/index.js
CHANGED
|
@@ -556,7 +556,7 @@ const getSendRequest = () => __awaiter(void 0, void 0, void 0, function* () {
|
|
|
556
556
|
let timedOut = false;
|
|
557
557
|
yield Promise.all([
|
|
558
558
|
(() => __awaiter(void 0, void 0, void 0, function* () {
|
|
559
|
-
yield waitMs(
|
|
559
|
+
yield waitMs(5000);
|
|
560
560
|
timedOut = true;
|
|
561
561
|
}))(),
|
|
562
562
|
initialized,
|
package/package.json
CHANGED