tangled
alpha
login
or
join now
robinwobin.dev
/
witchsky.app
forked from
jollywhoppers.com/witchsky.app
0
fork
atom
Bluesky app fork with some witchin' additions 💫
0
fork
atom
overview
issues
pulls
pipelines
some more geolocation fixes for mobile
Daniela Henkel
6 months ago
c87d17b1
792c3ddf
+4
-4
1 changed file
expand all
collapse all
unified
split
src
state
geolocation
const.ts
+4
-4
src/state/geolocation/const.ts
···
13
13
* Default geolocation config.
14
14
*/
15
15
export const DEFAULT_GEOLOCATION_CONFIG: Device['geolocation'] = {
16
16
-
countryCode: undefined,
17
17
-
regionCode: undefined,
16
16
+
countryCode: 'US',
17
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
26
-
countryCode: undefined,
27
27
-
regionCode: undefined,
26
26
+
countryCode: 'US',
27
27
+
regionCode: 'CA',
28
28
isAgeRestrictedGeo: false,
29
29
isAgeBlockedGeo: false,
30
30
}