From 7ab0c85791414e809e1b2dec82e46c87200dc6d9 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Fri, 14 Jun 2024 14:19:42 -0500 Subject: [PATCH] Show unresolved RT prior to facet resolution --- src/components/FeedCard.tsx | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/src/components/FeedCard.tsx b/src/components/FeedCard.tsx index 8ec0401b31..2745ed7c9f 100644 --- a/src/components/FeedCard.tsx +++ b/src/components/FeedCard.tsx @@ -94,31 +94,10 @@ export function TitleAndByline({ } export function Description({description}: {description?: string}) { - const t = useTheme() const [rt, isResolving] = useRichText(description || '') if (!description) return null return isResolving ? ( - - - - + ) : ( )