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) => {