mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-03-10 05:35:05 +08:00
not setting config to null to avoid loading issues
This commit is contained in:
parent
9698a68b1a
commit
bc282a0297
1 changed files with 1 additions and 1 deletions
|
@ -91,7 +91,7 @@ async function saveConfigToCookie(noDbCheck = false) {
|
|||
// showNotification('saving to cookie',1000);
|
||||
let d = new Date();
|
||||
d.setFullYear(d.getFullYear() + 1);
|
||||
$.cookie("config", null);
|
||||
// $.cookie("config", null);
|
||||
$.cookie("config", JSON.stringify(config), {
|
||||
expires: d,
|
||||
path: "/",
|
||||
|
|
Loading…
Reference in a new issue