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
In commit 6e78509, the cookie handling was refactored to use 'universal-cookie'.
See:
However the function to update the cookie wasn't changed, which seems a simple oversight. It still uses: Cookie.save('showBanner', 'no');
rather than: cookies.set('showBanner', 'no');
Note, I haven't tested this (yet), but it seems straightforward. Will raise a PR shortly.
The text was updated successfully, but these errors were encountered:
In commit 6e78509, the cookie handling was refactored to use 'universal-cookie'.
See:
However the function to update the cookie wasn't changed, which seems a simple oversight. It still uses:
Cookie.save('showBanner', 'no');
rather than:
cookies.set('showBanner', 'no');
Note, I haven't tested this (yet), but it seems straightforward. Will raise a PR shortly.
The text was updated successfully, but these errors were encountered: