Enable in dev

This commit is contained in:
Eric Bailey
2025-07-11 15:14:33 -05:00
parent 36f4dc3274
commit 3b2f70c269
+1 -1
View File
@@ -96,7 +96,7 @@ export function Provider({children}: {children: React.ReactNode}) {
* Derive state, or fall back to defaults
*/
const ageAssuranceContext = useMemo<AgeAssuranceContextType>(() => {
const enabled = gate('age_assurance')
const enabled = __DEV__ || gate('age_assurance')
const {status, lastInitiatedAt} = data || DEFAULT_AGE_ASSURANCE_STATE
const ctx: AgeAssuranceContextType = {
status,