make live now gate fail-open (#9714)

(cherry picked from commit acc26c965d)
This commit is contained in:
Samuel Newman
2026-01-16 18:34:00 +02:00
committed by Eric Bailey
parent 7e3dcc5168
commit 351d7a3fec
3 changed files with 3 additions and 3 deletions
@@ -25,7 +25,7 @@ export const enabled = createIsEnabledCheck(props => {
'2026-01-16T00:00:00.000Z',
props.currentProfile.createdAt,
) &&
props.gate('live_now_beta')
!props.gate('disable_live_now_beta')
)
})
+1 -1
View File
@@ -3,12 +3,12 @@ export type Gate =
| 'alt_share_icon'
| 'debug_show_feedcontext'
| 'debug_subscriptions'
| 'disable_live_now_beta'
| 'disable_onboarding_find_contacts'
| 'disable_settings_find_contacts'
| 'explore_show_suggested_feeds'
| 'feed_reply_button_open_thread'
| 'is_bsky_team_member' // special, do not remove
| 'live_now_beta'
| 'old_postonboarding'
| 'onboarding_add_video_feed'
| 'onboarding_suggested_starterpacks'
+1 -1
View File
@@ -110,7 +110,7 @@ export function useCanGoLive() {
const gate = useGate()
const {hasSession} = useSession()
if (!hasSession) return false
return IS_DEV ? true : gate('live_now_beta')
return IS_DEV ? true : !gate('disable_live_now_beta')
}
export function useCheckEmailConfirmed() {