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>
This commit is contained in:
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

View file

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