Remove useless console log

This commit is contained in:
Julien Constant 2022-12-13 21:20:32 +01:00
parent 678033580a
commit f591b89afc

View File

@ -63,7 +63,6 @@ document.addEventListener('alpine:init', () => {
edit_cookies() {
// a cookie survives an hour
console.log(encodeURIComponent(JSON.stringify(this.items)));
document.cookie = "basket_items=" + encodeURIComponent(JSON.stringify(this.items)) + ";Max-Age=3600";
},