···66/**
77 * Default geolocation config.
88 */
99+// forks tend to get blocked from the geolocation service bluesky uses,
1010+// instead of making our own and grabbing peoples location without their consent,
1111+// lets just force set everyone to be in the US,
1212+// maybe make a tweak in the future that lets ppl customize this
913export const FALLBACK_GEOLOCATION_SERVICE_RESPONSE: Geolocation = {
1010- countryCode: undefined,
1111- regionCode: undefined,
1414+ countryCode: 'US',
1515+ regionCode: 'CA',
1216}