diff --git a/packages/react-tweet/src/twitter-theme/quoted-tweet/quoted-tweet-body.tsx b/packages/react-tweet/src/twitter-theme/quoted-tweet/quoted-tweet-body.tsx index c5b5800..0707979 100644 --- a/packages/react-tweet/src/twitter-theme/quoted-tweet/quoted-tweet-body.tsx +++ b/packages/react-tweet/src/twitter-theme/quoted-tweet/quoted-tweet-body.tsx @@ -4,7 +4,7 @@ import s from './quoted-tweet-body.module.css' type Props = { tweet: EnrichedQuotedTweet } export const QuotedTweetBody = ({ tweet }: Props) => ( -

+

{tweet.entities.map((item, i) => ( ))} diff --git a/packages/react-tweet/src/twitter-theme/tweet-body.tsx b/packages/react-tweet/src/twitter-theme/tweet-body.tsx index 80a1aae..7e609a2 100644 --- a/packages/react-tweet/src/twitter-theme/tweet-body.tsx +++ b/packages/react-tweet/src/twitter-theme/tweet-body.tsx @@ -3,7 +3,7 @@ import { TweetLink } from './tweet-link.js' import s from './tweet-body.module.css' export const TweetBody = ({ tweet }: { tweet: EnrichedTweet }) => ( -

+

{tweet.entities.map((item, i) => { switch (item.type) { case 'hashtag':