António Lopes

Results 4 comments of António Lopes

There's something wrong with the npm package. Set it as ```"redux-token-auth": "git+https://github.com/kylecorbelli/redux-token-auth.git",``` in your `package.json` and it will work.

Can you confirm that **/dist/services/auth.js** is the same on both versions? npm https://registry.npmjs.org/redux-token-auth/-/redux-token-auth-0.19.0.tgz ``` exports.persistAuthHeadersInLocalStorage = function (headers) { authHeaderKeys.forEach(function (key) { localStorage.setItem(key, headers[key]); }); }; ``` repo https://github.com/kylecorbelli/redux-token-auth/blob/master/dist/services/auth.js#L53 ```...

From what I can observe, passing custom `storage` in the config doesn't work at all with the npm package. That's the issue I'm trying to raise here. Regarding your point...