diff --git a/src/screens/Onboarding/StepSuggestedAccounts/index.tsx b/src/screens/Onboarding/StepSuggestedAccounts/index.tsx index de88ee8e54..6b13462599 100644 --- a/src/screens/Onboarding/StepSuggestedAccounts/index.tsx +++ b/src/screens/Onboarding/StepSuggestedAccounts/index.tsx @@ -29,7 +29,6 @@ import {ChevronRight_Stroke2_Corner0_Rounded as ChevronRightIcon} from '#/compon import {Loader} from '#/components/Loader' import * as ProfileCard from '#/components/ProfileCard' import {boostInterests} from '#/components/ProgressGuide/FollowDialog' -import {SubtleHover} from '#/components/SubtleHover' import * as toast from '#/components/Toast' import {Text} from '#/components/Typography' import type * as bsky from '#/types/bsky' @@ -278,65 +277,47 @@ function SuggestedProfileCard({ }) { const t = useTheme() return ( - { - logger.metric( - 'suggestedUser:press', - { - logContext: 'Onboarding', - recId: undefined, - position, - }, - {statsig: true}, - ) - }}> - {s => ( - <> - - - - - - - { - logger.metric( - 'suggestedUser:follow', - { - logContext: 'Onboarding', - location: 'Card', - recId: undefined, - position, - }, - {statsig: true}, - ) - }} - /> - - - - - - )} - + + + + + + { + logger.metric( + 'suggestedUser:follow', + { + logContext: 'Onboarding', + location: 'Card', + recId: undefined, + position, + }, + {statsig: true}, + ) + }} + /> + + + + ) }