removed debug console.log

This commit is contained in:
mic 2024-06-18 22:08:16 +02:00
parent faabd69924
commit 8b01b2fa7f

View file

@ -34,7 +34,6 @@ switch (message.command) {
r.deleteContents();
const parser = new DOMParser();
const doc = parser.parseFromString(message.text, 'text/html');
console.log(JSON.stringify(doc));
r.insertNode(doc.body);
browser.runtime.sendMessage({command: "compose_reloadBody", tabId: message.tabId});
break;