Add more client events to profile followers/following pages (#9466)

* Add more client events to profile followers/following pages

* Remove unneeded logContext attribute
This commit is contained in:
Alex Benzer
2025-12-05 08:27:35 -08:00
committed by GitHub
parent d3878bf0ac
commit 6686ebc232
3 changed files with 91 additions and 1 deletions
+18
View File
@@ -301,6 +301,24 @@ export type MetricEvents = {
| 'ExploreSuggestedAccounts'
| 'OnboardingSuggestedAccounts'
}
'profile:followers:view': {
contextProfileDid: string
isOwnProfile: boolean
}
'profile:followers:paginate': {
contextProfileDid: string
itemCount: number
page: number
}
'profile:following:view': {
contextProfileDid: string
isOwnProfile: boolean
}
'profile:following:paginate': {
contextProfileDid: string
itemCount: number
page: number
}
'profileCard:seen': {
contextProfileDid?: string
profileDid: string