Bluesky app fork with some witchin' additions 馃挮 witchsky.app
bluesky fork client
120
fork

Configure Feed

Select the types of activity you want to include in your feed.

at a876aae44ea07494ebea9727350aa060b81f317b 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}