Bluesky app fork with some witchin' additions 💫

Remove handle suggestion gate (#8899)

* remove handle suggestion gate

* rm from list of gates

authored by samuel.fm and committed by

GitHub e8cd7ab1 f3905c57

+1 -6
-1
src/lib/statsig/gates.ts
··· 5 5 | 'debug_subscriptions' 6 6 | 'disable_onboarding_policy_update_notice' 7 7 | 'explore_show_suggested_feeds' 8 - | 'handle_suggestions' 9 8 | 'old_postonboarding' 10 9 | 'onboarding_add_video_feed' 11 10 | 'post_follow_profile_suggested_accounts'
+1 -5
src/screens/Signup/StepHandle/index.tsx
··· 9 9 import {msg, Plural, Trans} from '@lingui/macro' 10 10 import {useLingui} from '@lingui/react' 11 11 12 - import {useGate} from '#/lib/statsig/statsig' 13 12 import { 14 13 createFullHandle, 15 14 MAX_SERVICE_HANDLE_LENGTH, ··· 28 27 import {At_Stroke2_Corner0_Rounded as AtIcon} from '#/components/icons/At' 29 28 import {Check_Stroke2_Corner0_Rounded as CheckIcon} from '#/components/icons/Check' 30 29 import {Text} from '#/components/Typography' 31 - import {IS_INTERNAL} from '#/env' 32 30 import {BackNextButtons} from '../BackNextButtons' 33 31 import {HandleSuggestions} from './HandleSuggestions' 34 32 35 33 export function StepHandle() { 36 34 const {_} = useLingui() 37 35 const t = useTheme() 38 - const gate = useGate() 39 36 const {state, dispatch} = useSignupContext() 40 37 const [draftValue, setDraftValue] = useState(state.handle) 41 38 const isNextLoading = useThrottledValue(state.isLoading, 500) ··· 193 190 </RequirementText> 194 191 </Requirement> 195 192 {isHandleAvailable.suggestions && 196 - isHandleAvailable.suggestions.length > 0 && 197 - (gate('handle_suggestions') || IS_INTERNAL) && ( 193 + isHandleAvailable.suggestions.length > 0 && ( 198 194 <HandleSuggestions 199 195 suggestions={isHandleAvailable.suggestions} 200 196 onSelect={suggestion => {