Andrew Cunningham
Andrew Cunningham
I'll take a peek at this over the weekend. @sorodrigo Yeah, that action is for people to use manually to force the queue to resolve the top action. It was...
Can't reproduce on the web. I could see it happening if on reopening the web page, both the previous state was preserved (presumably by the mobile browser) and redux-persist rehydrated...
You are using the old version of the library. The current version is scoped to the _redux-offline_ organization. ```bash npm install --save @redux-offline/redux-offline ``` I haven't gotten to the multiple...
@ForumT Ah, I see what you are saying. The fix to #59 doesn't necessarily cause the multiple tabs issue, it's just that when the outbox wasn't being properly rehydrated, there...
If you don't want Redux Offline to setup Redux Persist, provide a falsey value for `offlineConfig.persist`. You are then free to handle setup however you like. And Redux Persist v5...
Redux Offline uses a higher-order reducer to store its working state under `state.offline`. `state.offline.outbox` needs to be persisted for retries to work across sessions.
I played around with this and it seemed to come together without issue. Code [here](https://codesandbox.io/s/vq429o84w7). @sorodrigo Not sure what to do with this. I'm leaning to adding an example and...
@gusgard There is no built in way to do this. You will have to initialize the network detector yourself. This is how it's done now: [index.js](https://github.com/redux-offline/redux-offline/blob/develop/src/index.js#L70-L75). You will want to...
@antonsivogrivov No. I explained why we don't intend to migrate at the moment above. If something has changed with Redux Persist I would be happy to take another look at...
`alert()` blocks execution. I can't say exactly why that would cause this issue without stepping through the code, but it is not something that you want to be doing. So...