Revert "Enable tags inside of quotes (#3041)" (#3075)

This reverts commit f016cdbca9.
This commit is contained in:
Hailey 2024-03-01 17:15:45 -08:00 committed by GitHub
parent 4fc0b566ef
commit b07846f2fa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 25 additions and 22 deletions

View file

@ -91,10 +91,7 @@ export function QuoteEmbed({
const richText = React.useMemo(
() =>
quote.text.trim()
? new RichTextAPI({
text: quote.text,
facets: quote.facets,
})
? new RichTextAPI({text: quote.text, facets: quote.facets})
: undefined,
[quote.text, quote.facets],
)