diff --git a/client/my-sites/stats/hooks/use-subscribers-totals-query.tsx b/client/my-sites/stats/hooks/use-subscribers-totals-query.tsx index 3f40281a768eee..078c41ad0a7c9e 100644 --- a/client/my-sites/stats/hooks/use-subscribers-totals-query.tsx +++ b/client/my-sites/stats/hooks/use-subscribers-totals-query.tsx @@ -10,6 +10,8 @@ const querySubscribersTotals = ( siteId: number | null, filterAdmin?: boolean ): { type: 'all', filter_admin: filterAdmin ? true : false, + // Only one-page results adjust visible subscribers with deleted accounts to align with the subscriber list. + max: 10, } ); };