diff --git a/app/components/Collaborators.js b/app/components/Collaborators.js index f632e8f63..2292f45fd 100644 --- a/app/components/Collaborators.js +++ b/app/components/Collaborators.js @@ -20,7 +20,9 @@ type Props = { @observer class Collaborators extends React.Component { componentDidMount() { - this.props.views.fetchPage({ documentId: this.props.document.id }); + if (!this.props.document.isDeleted) { + this.props.views.fetchPage({ documentId: this.props.document.id }); + } } render() {