diff options
author | Ansh <anshnanda10@gmail.com> | 2023-09-13 02:17:55 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-12 13:47:55 -0700 |
commit | 4977a5d2a3154083bc2ae63f9bf85d8b63140783 (patch) | |
tree | 48ca3cbc4415362db955be2acd96670b9eba7970 /src/lib/analytics/types.ts | |
parent | 2b6fe4cb50a4ffa5a6f5f7788128ca7cf66adf31 (diff) | |
download | voidsky-4977a5d2a3154083bc2ae63f9bf85d8b63140783.tar.zst |
Fix 651 Make followers and following button into a `<Link>` (#1429)
* make followers and following button into a Link * make buttons into `<a>` tags
Diffstat (limited to 'src/lib/analytics/types.ts')
-rw-r--r-- | src/lib/analytics/types.ts | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/lib/analytics/types.ts b/src/lib/analytics/types.ts index 5f9437319..4fcd3ebd2 100644 --- a/src/lib/analytics/types.ts +++ b/src/lib/analytics/types.ts @@ -56,8 +56,12 @@ interface TrackPropertiesMap { } // PROFILE HEADER events 'ProfileHeader:EditProfileButtonClicked': {} - 'ProfileHeader:FollowersButtonClicked': {} - 'ProfileHeader:FollowsButtonClicked': {} + 'ProfileHeader:FollowersButtonClicked': { + handle: string + } + 'ProfileHeader:FollowsButtonClicked': { + handle: string + } 'ProfileHeader:ShareButtonClicked': {} 'ProfileHeader:MuteAccountButtonClicked': {} 'ProfileHeader:UnmuteAccountButtonClicked': {} |