diff --git a/ProjectLighthouse.Servers.GameServer/Controllers/Slots/ListController.cs b/ProjectLighthouse.Servers.GameServer/Controllers/Slots/ListController.cs index ca9dec79..67fff180 100644 --- a/ProjectLighthouse.Servers.GameServer/Controllers/Slots/ListController.cs +++ b/ProjectLighthouse.Servers.GameServer/Controllers/Slots/ListController.cs @@ -254,7 +254,7 @@ public class ListController : ControllerBase pageData.TotalElements = await this.database.HeartedProfiles.CountAsync(h => h.UserId == targetUserId); List heartedProfiles = (await this.database.HeartedProfiles.Include(h => h.HeartedUser) - .OrderBy(h => h.HeartedProfileId) + .OrderByDescending(h => h.HeartedProfileId) .Where(h => h.UserId == targetUserId) .Select(h => h.HeartedUser) .ApplyPagination(pageData)