Not all the mailchimp lists are showing up, by choosing a mailchimp feed

Hello, when i create a new mailchimp connection, and i choose a mailchimp list, by creating a new feed, i can not see all the mailchimp lists. I see a lot, but not all. I tried everything, to delete the list in mailchimp, create a new one etc. Some are showing up, others dont… please help, thanks

The default behaviour of the add-on is to retrieve a maximum of 100 lists, however, you can use the gform_mailchimp_lists_params filter in your theme functions.php file or a custom functionality plugin to return more e.g.

add_filter( 'gform_mailchimp_lists_params', function( $params ) {
    $params['limit'] = 300; // return 300 lists
    return $params;
} );

Is that what you are running into (the 100 list limit that is build in?)