fix: newMentionIds no longer always in event data, closes #7186

This commit is contained in:
Tom Moor
2024-07-02 18:03:22 -04:00
parent a8d4a5b587
commit 8a8dad15ef
2 changed files with 7 additions and 2 deletions

View File

@@ -342,7 +342,7 @@ export type CommentUpdateEvent = BaseEvent<Comment> & {
documentId: string;
actorId: string;
data: {
newMentionIds: string[];
newMentionIds?: string[];
};
};