<?php

function my_wpum_get_comments_for_profile( $args ) {
	$args['number'] = 100;

	return $args;
}

add_filter( 'wpum_get_comments_for_profile', 'my_wpum_get_comments_for_profile' );