fix(mobile): show all places don't show all places (#9193)

fix(mobile): show all places doesn't show all places
This commit is contained in:
Alex
2024-04-30 22:14:33 -05:00
committed by GitHub
parent f057fe045e
commit c0495ca23f
7 changed files with 46 additions and 15 deletions
@@ -119,4 +119,13 @@ class SearchService {
}
return null;
}
Future<List<AssetResponseDto>?> getAllPlaces() async {
try {
return await _apiService.searchApi.getAssetsByCity();
} catch (error, stackTrace) {
_log.severe("Failed to getAllPlaces", error, stackTrace);
}
return null;
}
}