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 ? ( - - - - + ) : ( )