This commit is contained in:
Manav Rathi 2024-04-07 10:49:31 +05:30
parent cb6cfee9a3
commit d992085dbd
No known key found for this signature in database
2 changed files with 3 additions and 4 deletions

View file

@ -1,4 +1,3 @@
import { CITIES_URL } from "@ente/shared/constants/urls";
import { logError } from "@ente/shared/sentry";
import { LocationTagData } from "types/entity";
import { Location } from "types/upload";
@ -22,7 +21,9 @@ class LocationSearchService {
if (this.citiesPromise) {
return;
}
this.citiesPromise = fetch(CITIES_URL).then((response) => {
this.citiesPromise = fetch(
"https://static.ente.io/world_cities.json",
).then((response) => {
return response.json().then((data) => {
this.cities = data["data"];
});

View file

@ -15,5 +15,3 @@ export const WEB_ROADMAP_URL = "https://github.com/ente-io/ente/discussions";
export const DESKTOP_ROADMAP_URL =
"https://github.com/ente-io/ente/discussions";
export const CITIES_URL = "https://static.ente.io/world_cities.json";