mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +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 (
|
return (
|
||||||
typeof response === 'object' &&
|
typeof response === 'object' &&
|
||||||
response !== null &&
|
response !== null &&
|
||||||
// @ts-expect-error it's 6 am please let me sleep
|
|
||||||
(('__typename' in response &&
|
(('__typename' in response &&
|
||||||
(response.__typename === 'Tweet' || response.__typename === 'TweetWithVisibilityResults')) ||
|
(response.__typename === 'Tweet' || response.__typename === 'TweetWithVisibilityResults')) ||
|
||||||
|
// @ts-expect-error it's 6 am please let me sleep
|
||||||
('legacy' in response && response.legacy?.full_text))
|
('legacy' in response && response.legacy?.full_text))
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue