Bluesky app fork with some witchin' additions 💫 witchsky.app
bluesky fork client
122
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove gate from updates (#3646)

authored by

Hailey and committed by
GitHub
243769e6 0e3a13b6

+1 -4
+1 -3
src/lib/hooks/useOTAUpdates.ts
··· 12 12 13 13 import {logger} from '#/logger' 14 14 import {IS_TESTFLIGHT} from 'lib/app-info' 15 - import {useGate} from 'lib/statsig/statsig' 16 15 import {isIOS} from 'platform/detection' 17 16 18 17 const MINIMUM_MINIMIZE_TIME = 15 * 60e3 ··· 31 30 } 32 31 33 32 export function useOTAUpdates() { 34 - const gate = useGate() 35 - const shouldReceiveUpdates = isEnabled && !__DEV__ && gate('receive_updates') 33 + const shouldReceiveUpdates = isEnabled && !__DEV__ 36 34 37 35 const appState = React.useRef<AppStateStatus>('active') 38 36 const lastMinimize = React.useRef(0)
-1
src/lib/statsig/gates.ts
··· 6 6 | 'hide_vertical_scroll_indicators' 7 7 | 'new_gif_player' 8 8 | 'new_profile_scroll_component' 9 - | 'receive_updates' 10 9 | 'show_follow_back_label_v2' 11 10 | 'start_session_with_following_v2' 12 11 | 'use_new_suggestions_endpoint'