diff --git a/packages/backend/src/models/NoteDraft.ts b/packages/backend/src/models/NoteDraft.ts index ff7616bdf4..a62c79cb82 100644 --- a/packages/backend/src/models/NoteDraft.ts +++ b/packages/backend/src/models/NoteDraft.ts @@ -22,7 +22,7 @@ export class MiNoteDraft { nullable: true, comment: 'The ID of reply target.', }) - public replyId: MiNoteDraft['id'] | null; + public replyId: MiNote['id'] | null; @ManyToOne(type => MiNote, { onDelete: 'CASCADE',