style: auto format

This commit is contained in:
github-actions[bot]
2024-05-04 15:11:03 +00:00
parent 75d8152540
commit 32bc952418
2 changed files with 11 additions and 12 deletions
+10 -11
View File
@@ -100,17 +100,16 @@ const getUserMedia = (id: string, params?: Record<string, any>) =>
const getUserLikes = (id: string, params?: Record<string, any>) =>
cacheTryGet(id, params, async (id, params = {}) =>
gatherLegacyFromData(
await paginationTweets(
'Likes',
id,
{
...params,
includeHasBirdwatchNotes: false,
includePromotedContent: false,
withBirdwatchNotes: false,
withVoice: false,
withV2Timeline: true,
})));
await paginationTweets('Likes', id, {
...params,
includeHasBirdwatchNotes: false,
includePromotedContent: false,
withBirdwatchNotes: false,
withVoice: false,
withV2Timeline: true,
})
)
);
const getUserTweet = (id: string, params?: Record<string, any>) =>
cacheTryGet(id, params, async (id, params = {}) =>
+1 -1
View File
@@ -88,7 +88,7 @@ const gqlFeatures = {
ListLatestTweetsTimeline: gqlFeatureFeed,
HomeTimeline: gqlFeatureFeed,
TweetDetail: TweetDetailFeatures,
Likes: gqlFeatureFeed
Likes: gqlFeatureFeed,
};
const timelineParams = {