Merge branch 'main' of github.com:outline/outline

This commit is contained in:
Tom Moor
2023-10-05 21:52:13 -04:00
12 changed files with 140 additions and 62 deletions

View File

@@ -254,9 +254,7 @@ class WebsocketProvider extends React.Component<Props> {
});
this.socket.on("comments.delete", (event: WebsocketEntityDeletedEvent) => {
comments.inThread(event.modelId).forEach((comment) => {
comments.remove(comment.id);
});
comments.remove(event.modelId);
});
this.socket.on("groups.create", (event: PartialWithId<Group>) => {