diff --git a/src/helpers/graphql.ts b/src/helpers/graphql.ts index 0e10623..6d4049a 100644 --- a/src/helpers/graphql.ts +++ b/src/helpers/graphql.ts @@ -18,7 +18,6 @@ export const isGraphQLTweet = (response: unknown): response is GraphQLTweet => { response !== null && (('__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)) + typeof (response as GraphQLTweet).legacy?.full_text === 'string') ); };