I am using redux-persist for my react/redux application to give the multi-tab and page refresh support, which happens seamlessly. Now the issue is :
- I login
- I open multiple tabs
- Logout from one tab
- Expected: Logged out only from that tab (JWT)
- What happens is: REHYDRATE happens on other tabs on page refresh and my state is persisted.
I tried using the redux-persist-crosstab but seems like they are not compatible with the latest version. what is a gracious way of handling LOGOUT with redux-persist in MULTI Tab scenario?