Sfoglia il codice sorgente

remove unused logs

Daniel Bohry 1 mese fa
parent
commit
a689956c9c
1 ha cambiato i file con 0 aggiunte e 4 eliminazioni
  1. 0 4
      src/main/resources/static/js/script.js

+ 0 - 4
src/main/resources/static/js/script.js

@@ -85,8 +85,6 @@ function init() {
     // Set up auto-save on content change
     if (noteContent) {
         noteContent.addEventListener('input', handleContentChange);
-    } else {
-        console.error('Element with ID "noteContent" not found');
     }
 
     // Handle Enter key in ID input
@@ -97,8 +95,6 @@ function init() {
                 loadNoteFromInput();
             }
         });
-    } else {
-        console.error('Element with ID "noteIdInput" not found');
     }
 }