Bluesky app fork with some witchin' additions 💫

fix ui being borked when doing build-web

+6 -5
+6 -5
src/state/geolocation.tsx
··· 65 65 * In dev, IP server is unavailable, so we just set the default geolocation 66 66 * and fail closed. 67 67 */ 68 - if (__DEV__) { 69 - geolocationResolution = new Promise(y => y({success: true})) 70 - if (!device.get(['geolocation'])) { 71 - device.set(['geolocation'], DEFAULT_GEOLOCATION) 72 - } 68 + // commented out the dev if check, the entire web ui straight up doesnt load when doing build-web because of this check 69 + //if (__DEV__) { 70 + geolocationResolution = new Promise(y => y({success: true})) 71 + if (!device.get(['geolocation'])) { 72 + device.set(['geolocation'], DEFAULT_GEOLOCATION) 73 + // } 73 74 return 74 75 } 75 76 }