···65 * In dev, IP server is unavailable, so we just set the default geolocation
66 * and fail closed.
67 */
68- if (__DEV__) {
69- geolocationResolution = new Promise(y => y({success: true}))
70- if (!device.get(['geolocation'])) {
71- device.set(['geolocation'], DEFAULT_GEOLOCATION)
72- }
073 return
74 }
75}
···65 * In dev, IP server is unavailable, so we just set the default geolocation
66 * and fail closed.
67 */
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+ // }
74 return
75 }
76}