Bluesky app fork with some witchin' additions 馃挮
at main 15 lines 535 B view raw
1import {type Geolocation} from '#/geolocation/types' 2 3export const GEOLOCATION_SERVICE_URL = '' // No longer needed 4 5/** 6 * Default geolocation config. 7 */ 8// forks tend to get blocked from the geolocation service bluesky uses, 9// instead of making our own and grabbing peoples location without their consent, 10// lets just force set everyone to be in the US, 11// maybe make a tweak in the future that lets ppl customize this 12export const FALLBACK_GEOLOCATION_SERVICE_RESPONSE: Geolocation = { 13 countryCode: 'US', 14 regionCode: 'CA', 15}