Fix missing recId values for suggested user events (#10291)
Co-authored-by: Eric Bailey <git@esb.lol>
This commit is contained in:
@@ -162,7 +162,7 @@ type ExploreScreenItems =
|
||||
type: 'profile'
|
||||
key: string
|
||||
profile: AppBskyActorDefs.ProfileView
|
||||
recId?: number
|
||||
recId?: string
|
||||
}
|
||||
| {
|
||||
type: 'profileEmpty'
|
||||
@@ -406,6 +406,7 @@ export function Explore({
|
||||
type: 'profile',
|
||||
key: actor.did,
|
||||
profile: actor,
|
||||
recId: suggestedUsers.recId,
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
@@ -105,7 +105,7 @@ let SuggestedProfileCard = ({
|
||||
}: {
|
||||
profile: bsky.profile.AnyProfileView
|
||||
moderationOpts: ModerationOpts
|
||||
recId?: number
|
||||
recId?: string
|
||||
position: number
|
||||
}): React.ReactNode => {
|
||||
const t = useTheme()
|
||||
|
||||
Reference in New Issue
Block a user