Fix CI
All checks were successful
Build and publish Docker image / build-and-push (push) Successful in 4m15s
CI / Check (push) Successful in 5m49s

This commit is contained in:
Andras Schmelczer 2026-06-06 20:37:54 +01:00
parent 719dd27600
commit b4d66a28c1
5 changed files with 14 additions and 15 deletions

View file

@ -796,12 +796,10 @@ pub async fn get_export(
group.summary.merge_from(agg);
}
for group in by_outcode.values_mut() {
group
.members
.sort_by(|&a, &b| {
postcode_data.postcodes[postcode_aggs[a].0]
.cmp(&postcode_data.postcodes[postcode_aggs[b].0])
});
group.members.sort_by(|&a, &b| {
postcode_data.postcodes[postcode_aggs[a].0]
.cmp(&postcode_data.postcodes[postcode_aggs[b].0])
});
}
order
.into_iter()