@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.
- package/dist/editor/ai/AgentTerminal.js +0 -8
- package/dist/editor/ai/AgentTerminal.js.map +1 -1
- package/dist/editor/client/EditorShell.js +5 -4
- package/dist/editor/client/EditorShell.js.map +1 -1
- package/dist/editor/client/operations.js +22 -4
- package/dist/editor/client/operations.js.map +1 -1
- package/dist/editor/field-types/richtext/components/ReactSlate.js +1 -1
- package/dist/editor/field-types/richtext/components/ReactSlate.js.map +1 -1
- package/dist/editor/page-viewer/PageViewerFrame.js +70 -50
- package/dist/editor/page-viewer/PageViewerFrame.js.map +1 -1
- package/dist/editor/services/agentService.js +10 -0
- package/dist/editor/services/agentService.js.map +1 -1
- package/dist/editor/services/serviceHelper.js +39 -17
- package/dist/editor/services/serviceHelper.js.map +1 -1
- package/dist/revision.d.ts +2 -2
- package/dist/revision.js +2 -2
- package/package.json +1 -1
|
@@ -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
|