diff --git a/src/Artemis.UI/Screens/Workshop/Home/WorkshopHomeViewModel.cs b/src/Artemis.UI/Screens/Workshop/Home/WorkshopHomeViewModel.cs index 888929fd5..7fd2bb675 100644 --- a/src/Artemis.UI/Screens/Workshop/Home/WorkshopHomeViewModel.cs +++ b/src/Artemis.UI/Screens/Workshop/Home/WorkshopHomeViewModel.cs @@ -48,10 +48,10 @@ public partial class WorkshopHomeViewModel : RoutableScreen { p.Clear(); if (popularResult.Data?.PopularEntries != null) - p.AddRange(popularResult.Data.PopularEntries); + p.AddRange(popularResult.Data.PopularEntries.Take(8)); }); - IOperationResult latestResult = await client.GetEntriesv2.ExecuteAsync(null, null, [new EntrySortInput {CreatedAt = SortEnumType.Desc}], 25, null); + IOperationResult latestResult = await client.GetEntriesv2.ExecuteAsync(null, null, [new EntrySortInput {CreatedAt = SortEnumType.Desc}], 8, null); latest.Edit(l => { l.Clear();