···6565 * In dev, IP server is unavailable, so we just set the default geolocation
6666 * and fail closed.
6767 */
6868- if (__DEV__) {
6969- geolocationResolution = new Promise(y => y({success: true}))
7070- if (!device.get(['geolocation'])) {
7171- device.set(['geolocation'], DEFAULT_GEOLOCATION)
7272- }
6868+ // commented out the dev if check, the entire web ui straight up doesnt load when doing build-web because of this check
6969+ //if (__DEV__) {
7070+ geolocationResolution = new Promise(y => y({success: true}))
7171+ if (!device.get(['geolocation'])) {
7272+ device.set(['geolocation'], DEFAULT_GEOLOCATION)
7373+ // }
7374 return
7475 }
7576}