From 8c198353277db45ff4246905e4ebfc93af9b371e Mon Sep 17 00:00:00 2001 From: Anthony Debucquoy Date: Thu, 7 Mar 2024 22:26:16 +0100 Subject: [PATCH] forgot a + --- frontend/src/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 :/ }