diff --git a/src/api/user.ts b/src/api/user.ts index 10bf0d4..6d03c36 100644 --- a/src/api/user.ts +++ b/src/api/user.ts @@ -33,7 +33,7 @@ const populateUserProperties = async ( } } if (apiUser.verified === 'government') { - apiUser.verified_lable = user.affiliates_highlighted_label?.label?.description || ''; + apiUser.verified_label = user.affiliates_highlighted_label?.label?.description || ''; } apiUser.avatar_url = user.legacy.profile_image_url_https; apiUser.joined = user.legacy.created_at; diff --git a/src/types/types.d.ts b/src/types/types.d.ts index 6faa4cf..45666de 100644 --- a/src/types/types.d.ts +++ b/src/types/types.d.ts @@ -160,7 +160,7 @@ interface APIUser { url: string; protected: boolean; verified: 'legacy' | 'blue'| 'business' | 'government'; - verified_lable: string; + verified_label: string; followers: number; following: number; tweets: number;