Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion packages/editor/src/core/extensions/unique-id/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ export const createUniqueIDPlugin = (options: UniqueIDOptions) => {
tr.setStoredMarks(newState.tr.storedMarks);

// Don't add ID generation to undo history
tr.setMeta("addToHistory", false);
// since its causing issue with undo feature we are commmeting it out for now
Copy link

Copilot AI Dec 4, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Spelling error: "commmeting" should be "commenting".

Suggested change
// since its causing issue with undo feature we are commmeting it out for now
// since its causing issue with undo feature we are commenting it out for now

Copilot uses AI. Check for mistakes.
// tr.setMeta("addToHistory", false);

return tr;
},
Expand Down
Loading