apply_filters( 'relevanssi_user_searches_limit', int $limit )
This filter hook controls how many search queries Relevanssi shows on the User Searches page.
Parameters
$limit
(int) The number of queries to display, default 100.
More information
If you want to adjust how many search queries Relevanssi shows on the User searches page, you can change the value with this filter hook:
add_filter( 'relevanssi_user_searches_limit', function() { return 200; } );