Fix quote post moderation check (#2149)

* Fix quote post moderation check

* Restore the ContentHider check

* Apply the content hider to quote posts

---------

Co-authored-by: Paul Frazee <pfrazee@gmail.com>
zio/stable
Eric Bailey 2023-12-08 18:15:07 -06:00 committed by GitHub
parent 1b8b1b2ed1
commit 0270ada908
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -95,7 +95,9 @@ export function PostEmbeds({
// quote post
// =
return (
<MaybeQuoteEmbed embed={embed} style={style} moderation={moderation} />
<ContentHider moderation={moderation}>
<MaybeQuoteEmbed embed={embed} style={style} moderation={moderation} />
</ContentHider>
)
}