make live now gate fail-open (#9714)

This commit is contained in:
Samuel Newman
2026-01-16 18:34:00 +02:00
committed by GitHub
parent fbd1138d97
commit acc26c965d
3 changed files with 3 additions and 3 deletions
+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() {