"git@developer.sourcefind.cn:modelzoo/solov2-pytorch.git" did not exist on "381f491776a3e934be88c895a3f17f256342c629"
Commit 4922b657 authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

Update Personalization.svelte

parent 8163902a
...@@ -16,11 +16,11 @@ ...@@ -16,11 +16,11 @@
let showManageModal = false; let showManageModal = false;
// Addons // Addons
let enableMemory = true; let enableMemory = false;
onMount(async () => { onMount(async () => {
let settings = JSON.parse(localStorage.getItem('settings') ?? '{}'); let settings = JSON.parse(localStorage.getItem('settings') ?? '{}');
enableMemory = settings?.memory ?? true; enableMemory = settings?.memory ?? false;
}); });
</script> </script>
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment