From 764e84057a280bfdb8dcd60dd245396bac17db73 Mon Sep 17 00:00:00 2001 From: Brian Lovin Date: Mon, 8 Apr 2024 09:44:30 -0700 Subject: [PATCH] Add Hexagon as valid profile_image_shape (#142) --- packages/react-tweet/src/api/types/user.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-tweet/src/api/types/user.ts b/packages/react-tweet/src/api/types/user.ts index 18740a0..1160bf8 100644 --- a/packages/react-tweet/src/api/types/user.ts +++ b/packages/react-tweet/src/api/types/user.ts @@ -2,7 +2,7 @@ export interface TweetUser { id_str: string name: string profile_image_url_https: string - profile_image_shape: 'Circle' | 'Square' + profile_image_shape: 'Circle' | 'Square' | 'Hexagon' screen_name: string verified: boolean verified_type?: 'Business' | 'Government'