From 7fe50139b587b692e1e4785ae4b07f318f2334f2 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Tue, 15 Jul 2025 09:53:31 -0500 Subject: [PATCH] Add debug code --- src/state/geolocation.tsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/state/geolocation.tsx b/src/state/geolocation.tsx index 9e8d555ad6..e399a809ca 100644 --- a/src/state/geolocation.tsx +++ b/src/state/geolocation.tsx @@ -68,6 +68,13 @@ export function beginResolveGeolocation() { */ if (__DEV__) { geolocationResolution = new Promise(y => y({success: true})) + + // use for debugging + // device.set(['geolocation'], { + // countryCode: "GB", + // isAgeRestrictedGeo: true, + // }) + if (!device.get(['geolocation'])) { device.set(['geolocation'], DEFAULT_GEOLOCATION) }