I seem to have fixed this issue.
The page needs to track the list or tab it is on
It does require modifying the file includes/pagination.php
the method to modify is static function getPagination($total)
add these two lines to the top
$list = JSSTrequest::getVar('list', null, 1)
$add_args = array('list' => $list);
Then modify the paginate_links(
change
'add_args' => false
to
'add_args' => $add_args
No all the pagination works