From 3b2f70c2699c5bc372548b6cafdf7cdd8ca7ad18 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Fri, 11 Jul 2025 15:14:33 -0500 Subject: [PATCH] Enable in dev --- src/state/age-assurance/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/state/age-assurance/index.tsx b/src/state/age-assurance/index.tsx index c093e59af4..e959c69c4f 100644 --- a/src/state/age-assurance/index.tsx +++ b/src/state/age-assurance/index.tsx @@ -96,7 +96,7 @@ export function Provider({children}: {children: React.ReactNode}) { * Derive state, or fall back to defaults */ const ageAssuranceContext = useMemo(() => { - const enabled = gate('age_assurance') + const enabled = __DEV__ || gate('age_assurance') const {status, lastInitiatedAt} = data || DEFAULT_AGE_ASSURANCE_STATE const ctx: AgeAssuranceContextType = { status,