diff --git a/src/render/instantview.ts b/src/render/instantview.ts index 3b92d3e..8779695 100644 --- a/src/render/instantview.ts +++ b/src/render/instantview.ts @@ -156,7 +156,7 @@ const generateTweetFooter = (tweet: APIPost, isQuote = false): string => { joined: author.joined ? `📆 ${formatDate(new Date(author.joined))}` : '', following: truncateSocialCount(author.following), followers: truncateSocialCount(author.followers), - tweets: truncateSocialCount(author.tweets) + tweets: truncateSocialCount(author.posts) }) }); };