From 4983e1a58e01a1d862838905d0cb0b35ce405b34 Mon Sep 17 00:00:00 2001 From: Wazbat Date: Sun, 16 Apr 2023 21:03:16 +0200 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20Fixed=20spelling=20error?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/user.ts | 2 +- src/types/types.d.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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;