From ba30074eae6ab3f4797fd3d9440bd630741a8581 Mon Sep 17 00:00:00 2001 From: Ion Dormenco Date: Sat, 6 Jun 2026 21:09:22 +0300 Subject: [PATCH] fix fetch all --- api/src/Feature.PollingStations/FetchAll/Endpoint.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/api/src/Feature.PollingStations/FetchAll/Endpoint.cs b/api/src/Feature.PollingStations/FetchAll/Endpoint.cs index ffb378281..b216218a1 100644 --- a/api/src/Feature.PollingStations/FetchAll/Endpoint.cs +++ b/api/src/Feature.PollingStations/FetchAll/Endpoint.cs @@ -45,7 +45,9 @@ public override async Task, NotFound>> ExecuteAsync(Request Level5 = x.Level5, Number = x.Number, Address = x.Address, - DisplayOrder = x.DisplayOrder + DisplayOrder = x.DisplayOrder, + Latitude = x.Latitude, + Longitude = x.Longitude }) .ToListAsync(cancellationToken: ct);