diff --git a/frontend/src/utils.js b/frontend/src/utils.js index 813e66f..bb9e61f 100644 --- a/frontend/src/utils.js +++ b/frontend/src/utils.js @@ -19,7 +19,7 @@ export function getCookie(key){ * @param key cookie name */ export function setCookie(key, value){ - cookie = key + "=" + value ";" + cookie = key + "=" + value + ";"; document.cookie = cookie; // Here we can apreciate the stupidity of Javascript :/ }