Use prod endpoint

This commit is contained in:
Eric Bailey
2024-09-20 11:01:19 -05:00
parent 4d4a092fb9
commit a79c82e098
+1 -1
View File
@@ -29,7 +29,7 @@ export const DEFAULT_GEOLOCATION: Device['geolocation'] = {
}
async function getGeolocation(): Promise<Device['geolocation']> {
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}`)