Fix missing recId values for suggested user events (#10291)

Co-authored-by: Eric Bailey <git@esb.lol>
This commit is contained in:
DS Boyce
2026-04-21 13:59:13 -07:00
committed by GitHub
parent bfdaab0a14
commit 07344f70fc
10 changed files with 38 additions and 4 deletions
+2 -1
View File
@@ -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()