diff --git a/src/services/handlers.js b/src/services/handlers.js index 3e2b69a60..e093a9219 100644 --- a/src/services/handlers.js +++ b/src/services/handlers.js @@ -150,14 +150,9 @@ function handleMaybeSortingLabel(entity) { // this will not work on deleted notes, but in that case we don't really need to re-sort if (note) { for (const parentNote of note.getParentNotes()) { - console.log("PAR", parentNote.noteId); const sorted = parentNote.getLabelValue("sorted"); - console.log("sorted", sorted); - if (sorted?.includes(entity.name)) { // hacky check if the sorting is affected by this label - console.log("RESIRT!"); - treeService.sortNotesIfNeeded(parentNote.noteId); } }