From 052a3e4f41de71581d37ea2e6cb158a69a28c18e Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Thu, 15 Jan 2026 10:53:02 -0600 Subject: [PATCH] Reset default AA debug for E2E --- 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 8a97cf84ee..44bf74a7a2 100644 --- a/src/ageAssurance/debug.ts +++ b/src/ageAssurance/debug.ts @@ -12,12 +12,12 @@ export const enabled = (IS_DEV && false) || IS_E2E export const geolocation: Geolocation | undefined = enabled ? { - countryCode: 'BB', + countryCode: 'AA', regionCode: undefined, } : undefined -const deviceGeolocationEnabled = false +const deviceGeolocationEnabled = false || IS_E2E export const deviceGeolocation: Geolocation | undefined = enabled && deviceGeolocationEnabled ? { @@ -46,7 +46,7 @@ export const config: AppBskyAgeassuranceDefs.Config = { rules: [ { $type: ids.Default, - access: 'none', + access: 'full', }, ], },