vishnukvmd 1 gadu atpakaļ
vecāks
revīzija
b84ad8a5bb
1 mainītis faili ar 1 papildinājumiem un 0 dzēšanām
  1. 1 0
      apps/photos/src/services/locationSearchService.ts

+ 1 - 0
apps/photos/src/services/locationSearchService.ts

@@ -19,6 +19,7 @@ class LocationSearchService {
         if (this.citiesPromise) {
             return;
         }
+        // TODO: Ensure the response is cached on the client
         this.citiesPromise = fetch(CITIES_URL).then((response) => {
             return response.json().then((data) => {
                 this.cities = data['data'];