diff --git a/src/lib/statsig/gates.ts b/src/lib/statsig/gates.ts index 10dda8ba3a..2bb94b8897 100644 --- a/src/lib/statsig/gates.ts +++ b/src/lib/statsig/gates.ts @@ -3,7 +3,6 @@ export type Gate = | 'alt_share_icon' | 'debug_show_feedcontext' | 'debug_subscriptions' - | 'disable_onboarding_policy_update_notice' | 'explore_show_suggested_feeds' | 'feed_reply_button_open_thread' | 'old_postonboarding' diff --git a/src/screens/Signup/StepInfo/Policies.tsx b/src/screens/Signup/StepInfo/Policies.tsx index 754f15e7e1..2c609cfc4d 100644 --- a/src/screens/Signup/StepInfo/Policies.tsx +++ b/src/screens/Signup/StepInfo/Policies.tsx @@ -4,42 +4,11 @@ import {type ComAtprotoServerDescribeServer} from '@atproto/api' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {webLinks} from '#/lib/constants' -import {useGate} from '#/lib/statsig/statsig' import {atoms as a, useTheme} from '#/alf' import {Admonition} from '#/components/Admonition' import {InlineLinkText} from '#/components/Link' import {Text} from '#/components/Typography' -function CommunityGuidelinesNotice({}: {}) { - const {_} = useLingui() - const gate = useGate() - - if (gate('disable_onboarding_policy_update_notice')) return null - - return ( - - - - You also agree to{' '} - - Bluesky’s Community Guidelines - - . An{' '} - - updated version of our Community Guidelines - {' '} - will take effect on October 15th. - - - - ) -} - export const Policies = ({ serviceDescription, needsGuardian, @@ -67,7 +36,6 @@ export const Policies = ({ This service has not provided terms of service or a privacy policy. - ) } @@ -145,8 +113,6 @@ export const Policies = ({ ) : undefined} - - ) }