You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I configure a universal Cookie to map to a specific domain or path in the constructor. I would expect that I can remove that cookie without passing in additional information other than the name.
I enabled with react-cookie given remove/set a very similar I would expect the default values I pass into the constructor would also be included in the remove call.
cookies = new Cookies(null, {path: `/meow`});
cookies.set('testMeOut','value');
cookies.remove('testMeOut'); // I would expect the cookie set above would be removed.
The text was updated successfully, but these errors were encountered:
If I configure a universal
Cookie
to map to a specific domain or path in the constructor. I would expect that I can remove that cookie without passing in additional information other than the name.I enabled with react-cookie given remove/set a very similar I would expect the default values I pass into the constructor would also be included in the remove call.
The text was updated successfully, but these errors were encountered: