as temporary fix I use this code
jQuery( document ).ready(function($) {
$('.wp-block-uagb-tabs .uagb-tabs-list').on('click',
function(e){ e.preventDefault();
window.scrollTo( {
top: $(this).closest(".wp-block-uagb-tabs").offset()["top"] - ($("#wpadminbar").height()||0) - 60,
behavior: 'smooth'
} );
});
});