@parhelia/core 0.1.12072 → 0.1.12089

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -310,14 +310,6 @@ const extractTodosFromMessages = (messages) => {
310
310
  todoMap.set(key, todo);
311
311
  }
312
312
  const result = Array.from(todoMap.values());
313
- // Only log when duplicates were actually removed (to reduce noise)
314
- if (todos.length > result.length) {
315
- console.log("🟡 TODO_DEBUG deduplication:", {
316
- removed: todos.length - result.length,
317
- before: todos.length,
318
- after: result.length,
319
- });
320
- }
321
313
  return result;
322
314
  };
323
315
  // TodoListPanel component