diff --git a/DysonNetwork.Pass/Account/AccountEventService.cs b/DysonNetwork.Pass/Account/AccountEventService.cs index 06e12a9..7dda20a 100644 --- a/DysonNetwork.Pass/Account/AccountEventService.cs +++ b/DysonNetwork.Pass/Account/AccountEventService.cs @@ -438,7 +438,8 @@ public class AccountEventService( .ToDictionary(g => g.Key, g => g.ToList()); var checkInByDate = checkIn - .ToDictionary(c => c.CreatedAt.InUtc().Date); + .GroupBy(c => c.CreatedAt.InUtc().Date) + .ToDictionary(g => g.Key, g => g.OrderByDescending(c => c.CreatedAt).First()); return dates.Select(date => {