From 64123353ce00a0ad71d0a79b5001a82681cc72b6 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Thu, 2 Jul 2026 13:59:26 -0500 Subject: [PATCH] Revert debug --- src/ageAssurance/debug.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ageAssurance/debug.ts b/src/ageAssurance/debug.ts index 84c20a31c0..8a828a00e0 100644 --- a/src/ageAssurance/debug.ts +++ b/src/ageAssurance/debug.ts @@ -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