floppy-disk 3.7.0-beta.2 → 3.7.0-beta.3
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/esm/react.mjs +0 -2
- package/package.json +1 -1
- package/react.js +0 -2
package/esm/react.mjs
CHANGED
|
@@ -936,12 +936,10 @@ const experimental_createStream = (connect, disconnect, options = {}) => {
|
|
|
936
936
|
clearTimeout(disconnectTimeoutIds_.offline);
|
|
937
937
|
}
|
|
938
938
|
const { connectionState } = store.getState();
|
|
939
|
-
console.info("triggerReconnect", connectionState);
|
|
940
939
|
if (connectionState === "INITIAL" || connectionState === "DISCONNECTED") {
|
|
941
940
|
return store.connection.reconnect();
|
|
942
941
|
}
|
|
943
942
|
const shouldReconnect = reconnectOn(trigger, store.getState());
|
|
944
|
-
console.log({ shouldReconnect });
|
|
945
943
|
if (shouldReconnect) store.connection.reconnect();
|
|
946
944
|
};
|
|
947
945
|
const triggerDisconnect = (store, trigger) => {
|
package/package.json
CHANGED
package/react.js
CHANGED
|
@@ -938,12 +938,10 @@ const experimental_createStream = (connect, disconnect, options = {}) => {
|
|
|
938
938
|
clearTimeout(disconnectTimeoutIds_.offline);
|
|
939
939
|
}
|
|
940
940
|
const { connectionState } = store.getState();
|
|
941
|
-
console.info("triggerReconnect", connectionState);
|
|
942
941
|
if (connectionState === "INITIAL" || connectionState === "DISCONNECTED") {
|
|
943
942
|
return store.connection.reconnect();
|
|
944
943
|
}
|
|
945
944
|
const shouldReconnect = reconnectOn(trigger, store.getState());
|
|
946
|
-
console.log({ shouldReconnect });
|
|
947
945
|
if (shouldReconnect) store.connection.reconnect();
|
|
948
946
|
};
|
|
949
947
|
const triggerDisconnect = (store, trigger) => {
|