Remove explore_page_profile_card_social_proof (#4894)

zio/stable
Eric Bailey 2024-08-08 11:48:32 -05:00 committed by GitHub
parent f3a9f874d9
commit e1df2b0b16
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 7 deletions

View File

@ -1,7 +1,6 @@
export type Gate = export type Gate =
// Keep this alphabetic please. // Keep this alphabetic please.
| 'debug_show_feedcontext' | 'debug_show_feedcontext'
| 'explore_page_profile_card_social_proof'
| 'native_pwi_disabled' | 'native_pwi_disabled'
| 'new_user_guided_tour' | 'new_user_guided_tour'
| 'new_user_progress_guide' | 'new_user_progress_guide'

View File

@ -10,7 +10,6 @@ import {
import {msg, Trans} from '@lingui/macro' import {msg, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react' import {useLingui} from '@lingui/react'
import {useGate} from '#/lib/statsig/statsig'
import {logger} from '#/logger' import {logger} from '#/logger'
import {isWeb} from '#/platform/detection' import {isWeb} from '#/platform/detection'
import {useModerationOpts} from '#/state/preferences/moderation-opts' import {useModerationOpts} from '#/state/preferences/moderation-opts'
@ -293,7 +292,6 @@ export function Explore() {
error: feedsError, error: feedsError,
fetchNextPage: fetchNextFeedsPage, fetchNextPage: fetchNextFeedsPage,
} = useGetPopularFeedsQuery({limit: 10}) } = useGetPopularFeedsQuery({limit: 10})
const gate = useGate()
const isLoadingMoreProfiles = isFetchingNextProfilesPage && !isLoadingProfiles const isLoadingMoreProfiles = isFetchingNextProfilesPage && !isLoadingProfiles
const onLoadMoreProfiles = React.useCallback(async () => { const onLoadMoreProfiles = React.useCallback(async () => {
@ -499,9 +497,7 @@ export function Explore() {
profile={item.profile} profile={item.profile}
noBg noBg
noBorder noBorder
showKnownFollowers={gate( showKnownFollowers
'explore_page_profile_card_social_proof',
)}
/> />
</View> </View>
) )
@ -565,7 +561,7 @@ export function Explore() {
} }
} }
}, },
[t, moderationOpts, gate], [t, moderationOpts],
) )
return ( return (