diff --git a/src/app/core/persistence/operation-log/compact/action-type-codes.ts b/src/app/core/persistence/operation-log/compact/action-type-codes.ts index 2535fdd648..05b87664c3 100644 --- a/src/app/core/persistence/operation-log/compact/action-type-codes.ts +++ b/src/app/core/persistence/operation-log/compact/action-type-codes.ts @@ -50,10 +50,6 @@ export const ACTION_TYPE_TO_CODE: Record = { // GlobalConfig actions (C) [ActionType.GLOBAL_CONFIG_UPDATE_SECTION]: 'CU', - // DocumentMode actions (D) — feature removed, kept so historical op-log - // entries decode to a stable action type rather than the raw 'DU' code. - [ActionType.DOCUMENT_MODE_UPDATE_BLOCKS_DELTA]: 'DU', - // Metric actions (E) [ActionType.METRIC_ADD]: 'EA', [ActionType.METRIC_DELETE]: 'ED', diff --git a/src/app/op-log/core/action-types.enum.ts b/src/app/op-log/core/action-types.enum.ts index d9f7b0b9c9..e08227fd8f 100644 --- a/src/app/op-log/core/action-types.enum.ts +++ b/src/app/op-log/core/action-types.enum.ts @@ -104,10 +104,6 @@ export enum ActionType { NOTE_UPDATE_ORDER = '[Note] Update Note Order', NOTE_MOVE_TO_PROJECT = '[Note] Move to other project', - // DocumentMode actions — feature removed, enum entry kept so historical - // op-log entries decode to a stable action type identifier. - DOCUMENT_MODE_UPDATE_BLOCKS_DELTA = '[DocumentMode] Update Document Blocks Delta', - // Project actions (P) PROJECT_ADD = '[Project] Add Project', PROJECT_UPDATE = '[Project] Update Project',