From 412e1f892834a1189685585695862af9674905f4 Mon Sep 17 00:00:00 2001 From: "matth@ultra" Date: Sun, 1 Sep 2024 19:36:07 +0200 Subject: [PATCH] rm logging --- src/config.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/config.js b/src/config.js index 3561d45..2afd963 100644 --- a/src/config.js +++ b/src/config.js @@ -12,9 +12,8 @@ const reservedMappings = ["u", "s"]; * Load mappings, create a table showing them with a "remove" button each */ function renderMappings() { - console.log(localStorage.getItem('mappings')); + // console.log(localStorage.getItem('mappings')); const mappings = new Map(JSON.parse(localStorage.getItem('mappings')) || []); - console.log(typeof mappings); const tbody = document.querySelector('#mappingTable tbody'); tbody.innerHTML = ''; // clear table body mappings.forEach((directory, key) => {