mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
Fix this after prettier
This commit is contained in:
parent
822a744cc5
commit
7b4f56f90d
1 changed files with 1 additions and 1 deletions
|
@ -16,9 +16,9 @@ export const isGraphQLTweet = (response: unknown): response is GraphQLTweet => {
|
|||
return (
|
||||
typeof response === 'object' &&
|
||||
response !== null &&
|
||||
// @ts-expect-error it's 6 am please let me sleep
|
||||
(('__typename' in response &&
|
||||
(response.__typename === 'Tweet' || response.__typename === 'TweetWithVisibilityResults')) ||
|
||||
// @ts-expect-error it's 6 am please let me sleep
|
||||
('legacy' in response && response.legacy?.full_text))
|
||||
);
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue