forgot a +
All checks were successful
Build and test backend / Build-backend (pull_request) Successful in 1m56s
Build and test backend / Test-backend (pull_request) Successful in 2m0s
Build and test FrontEnd / Build-frontend (pull_request) Successful in 20s

This commit is contained in:
Debucquoy Anthony 2024-03-07 22:26:16 +01:00
parent 2ec1519568
commit 8c19835327
Signed by: tonitch
GPG Key ID: A78D6421F083D42E

View File

@ -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 :/
}