diff --git a/app/components/PublishingInfo.js b/app/components/PublishingInfo.js index b7ab8600..bb17571d 100644 --- a/app/components/PublishingInfo.js +++ b/app/components/PublishingInfo.js @@ -51,6 +51,12 @@ function PublishingInfo({ isDraft, } = document; + // Prevent meta information from displaying if updatedBy is not available. + // Currently the situation where this is true is rendering share links. + if (!updatedBy) { + return null; + } + let content; if (deletedAt) {