Minor cleanup

This commit is contained in:
Boris Milašinović
2026-04-27 00:30:31 +02:00
parent 1415005b82
commit 1f91bee61d
13 changed files with 14 additions and 35 deletions

View File

@@ -95,7 +95,6 @@ public class PeopleService : IPeopleService
public async Task<List<CountryOption>> GetCountryOptionsAsync()
{
return await ctx.Countries
.AsNoTracking()
.OrderBy(d => d.Name)
.Select(d => new CountryOption(d.Code, d.Name))
.ToListAsync();