Inline
This commit is contained in:
parent
cb6cfee9a3
commit
d992085dbd
2 changed files with 3 additions and 4 deletions
|
@ -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"];
|
||||
});
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Add table
Reference in a new issue