diff options
Diffstat (limited to 'src/view/com/auth/onboarding/RecommendedFollowsItem.tsx')
-rw-r--r-- | src/view/com/auth/onboarding/RecommendedFollowsItem.tsx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/view/com/auth/onboarding/RecommendedFollowsItem.tsx b/src/view/com/auth/onboarding/RecommendedFollowsItem.tsx index eadc3caff..93c515f38 100644 --- a/src/view/com/auth/onboarding/RecommendedFollowsItem.tsx +++ b/src/view/com/auth/onboarding/RecommendedFollowsItem.tsx @@ -18,7 +18,6 @@ import {logger} from '#/logger' type Props = { profile: AppBskyActorDefs.ProfileViewBasic - dataUpdatedAt: number moderation: ProfileModeration onFollowStateChange: (props: { did: string @@ -28,13 +27,12 @@ type Props = { export function RecommendedFollowsItem({ profile, - dataUpdatedAt, moderation, onFollowStateChange, }: React.PropsWithChildren<Props>) { const pal = usePalette('default') const {isMobile} = useWebMediaQueries() - const shadowedProfile = useProfileShadow(profile, dataUpdatedAt) + const shadowedProfile = useProfileShadow(profile) return ( <Animated.View |