diff --git a/index.html b/index.html
index f69c971c..976ee481 100644
--- a/index.html
+++ b/index.html
@@ -8232,7 +8232,7 @@
-
@@ -8277,7 +8277,7 @@
-
+
diff --git a/main.js b/main.js
index 5d67e029..1f91ed4a 100644
--- a/main.js
+++ b/main.js
@@ -293,11 +293,9 @@ async function checkLoadParameters() {
// restore onloadBehavior from localStorage if saved
const storedBehavior = localStorage.getItem("onloadBehavior");
- WARN && console.warn("Stored onloadBehavior:", storedBehavior);
if (storedBehavior) {
byId("onloadBehavior").value = storedBehavior;
}
- WARN && console.warn("Current onloadBehavior value:", byId("onloadBehavior").value);
// check if there is a default map saved to indexedDB
if (byId("onloadBehavior").value === "default") {
diff --git a/modules/io/save.js b/modules/io/save.js
index 5232bcf7..c4db90a2 100644
--- a/modules/io/save.js
+++ b/modules/io/save.js
@@ -177,7 +177,6 @@ async function saveAsDefaultMap() {
await ldb.set("defaultMap", blob);
localStorage.setItem("onloadBehavior", "default");
byId("onloadBehavior").value = "default";
- WARN && console.warn("Default map saved. onloadBehavior set to:", localStorage.getItem("onloadBehavior"));
tip("Map is set as default and will open on load", true, "success", 5000);
} catch (error) {
ERROR && console.error(error);