From f8f4b81022d55fdc5f1eae4e695139e4ab0d8f65 Mon Sep 17 00:00:00 2001 From: Demis Bellot Date: Wed, 17 May 2023 22:49:06 +0800 Subject: [PATCH] Change latest down to 250 artifacts per page --- MyApp/UserState.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MyApp/UserState.cs b/MyApp/UserState.cs index da57588..8f7fa0b 100644 --- a/MyApp/UserState.cs +++ b/MyApp/UserState.cs @@ -6,7 +6,7 @@ public class UserState { public const int InitialTake = 50; public const int NextPage = 100; - public const int StaticTake = 500; + public const int StaticTake = 250; public const int StaticPagedTake = 250; public IServiceGateway Client { get; }