When you have a little too many items in your menus, they automatically get grouped together into a More ->
drop down. This is to ensure that every element has its own space and display correctly on any kind of screen.
If you wish to forcefully disable this feature, use this little snippet below.
add_filter('blocksy:header:menu:has-responsive-desktop-menu', function ($menu) {
return false;
});