diff --git a/web/apps/photos/src/services/locationSearchService.ts b/web/apps/photos/src/services/locationSearchService.ts index a77557dee..bfc6990da 100644 --- a/web/apps/photos/src/services/locationSearchService.ts +++ b/web/apps/photos/src/services/locationSearchService.ts @@ -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"]; }); diff --git a/web/packages/shared/constants/urls.ts b/web/packages/shared/constants/urls.ts index 9802e5ed4..b55c9e519 100644 --- a/web/packages/shared/constants/urls.ts +++ b/web/packages/shared/constants/urls.ts @@ -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";