Skip to content

Commit 41b81b8

Browse files
♻️ Fetch 100 tweets at a time
1 parent dd337c7 commit 41b81b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/api/twitter.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ interface Tweet {
2222
text: string;
2323
}
2424

25-
export const getRecentTweets = async (count: number = 2) => {
25+
export const getRecentTweets = async (count: number = 100) => {
2626
if (integrationConfig("twitter").tweets) {
2727
const response: Array<Tweet> = await client.get("statuses/user_timeline", {
2828
screen_name: config("twitterScreenName") || "",

0 commit comments

Comments
 (0)