If you want to remove the GP Dashboard for non super admins, use the PHP below:
add_filter( 'generate_dashboard_page_capability', 'tu_super_admin_dashboard' ); function tu_super_admin_dashboard() { return 'manage_sites'; }
The snippet can also be modify for other Roles and Capabilities as you prefer.