Solution:
You should try to click on Recover Block and see if that helps. If that does not help, you should try to remove the existing block and try to build it from scratch.
The issue here is that the user wanted to add custom post types to the Author Archive for their users.
Solution:
This can be done by using the Hook below.
function post_types_author_archives($query) {
if ($query->is_author)
// Add 'books' CPT and the default 'posts' to display in author's archive
$query->set( 'post_type', array('nota', 'post') );
remove_action( 'pre_get_posts', 'custom_post_author_archive' );
}
add_action('pre_get_posts', 'post_types_author_archives');
Add the above to the functions.php file and just add your post type slug to the post_type array.