Revert debug

This commit is contained in:
Eric Bailey
2026-07-02 13:59:26 -05:00
parent f87f0a8ca8
commit 64123353ce
+3 -3
View File
@@ -9,12 +9,12 @@ import {type OtherRequiredData} from '#/ageAssurance/data'
import {IS_DEV, IS_E2E} from '#/env'
import {type Geolocation} from '#/geolocation'
export const enabled = (IS_DEV && true) || IS_E2E
export const enabled = (IS_DEV && false) || IS_E2E
export const geolocation: Geolocation | undefined = enabled
? {
countryCode: 'US',
regionCode: 'TX',
countryCode: 'AA',
regionCode: undefined,
}
: undefined