Bluesky app fork with some witchin' additions 💫

some more geolocation fixes for mobile

+4 -4
+4 -4
src/state/geolocation/const.ts
··· 13 13 * Default geolocation config. 14 14 */ 15 15 export const DEFAULT_GEOLOCATION_CONFIG: Device['geolocation'] = { 16 - countryCode: undefined, 17 - regionCode: undefined, 16 + countryCode: 'US', 17 + regionCode: 'CA', 18 18 ageRestrictedGeos: [], 19 19 ageBlockedGeos: [], 20 20 } ··· 23 23 * Default geolocation status. 24 24 */ 25 25 export const DEFAULT_GEOLOCATION_STATUS: GeolocationStatus = { 26 - countryCode: undefined, 27 - regionCode: undefined, 26 + countryCode: 'US', 27 + regionCode: 'CA', 28 28 isAgeRestrictedGeo: false, 29 29 isAgeBlockedGeo: false, 30 30 }