Bluesky app fork with some witchin' additions 💫

make live now gate fail-open (#9714)

authored by samuel.fm and committed by

GitHub acc26c96 fbd1138d

+3 -3
+1 -1
src/components/dialogs/nuxs/LiveNowBetaDialog.tsx
··· 25 25 '2026-01-16T00:00:00.000Z', 26 26 props.currentProfile.createdAt, 27 27 ) && 28 - props.gate('live_now_beta') 28 + !props.gate('disable_live_now_beta') 29 29 ) 30 30 }) 31 31
+1 -1
src/lib/statsig/gates.ts
··· 3 3 | 'alt_share_icon' 4 4 | 'debug_show_feedcontext' 5 5 | 'debug_subscriptions' 6 + | 'disable_live_now_beta' 6 7 | 'disable_onboarding_find_contacts' 7 8 | 'disable_settings_find_contacts' 8 9 | 'explore_show_suggested_feeds' 9 10 | 'feed_reply_button_open_thread' 10 11 | 'is_bsky_team_member' // special, do not remove 11 - | 'live_now_beta' 12 12 | 'old_postonboarding' 13 13 | 'onboarding_add_video_feed' 14 14 | 'onboarding_suggested_starterpacks'
+1 -1
src/state/service-config.tsx
··· 110 110 const gate = useGate() 111 111 const {hasSession} = useSession() 112 112 if (!hasSession) return false 113 - return IS_DEV ? true : gate('live_now_beta') 113 + return IS_DEV ? true : !gate('disable_live_now_beta') 114 114 } 115 115 116 116 export function useCheckEmailConfirmed() {