From a79c82e098267ca6755e3a814039c487e0aa3b6f Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Fri, 20 Sep 2024 11:01:19 -0500 Subject: [PATCH] Use prod endpoint --- src/state/geolocation.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/state/geolocation.tsx b/src/state/geolocation.tsx index 7470965334..4d45bb574b 100644 --- a/src/state/geolocation.tsx +++ b/src/state/geolocation.tsx @@ -29,7 +29,7 @@ export const DEFAULT_GEOLOCATION: Device['geolocation'] = { } async function getGeolocation(): Promise { - const res = await fetch(`https://app.staging.bsky.dev/ipcc`) + const res = await fetch(`https://bsky.app/ipcc`) if (!res.ok) { throw new Error(`geolocation: lookup failed ${res.status}`)