How to remove the Welcome Tab from Content Dashboard?

How to remove the Welcome Tab from Content Dashboard?
This code remove all Content Dashboard:

using Umbraco.Cms.Core.Composing;
using Umbraco.Cms.Core.Dashboards;
using Umbraco.Cms.Core.DependencyInjection;

namespace Umbraco.Docs.Samples.Web.Dashboards;

public class RemoveDashboard : IComposer
{
    public void Compose(IUmbracoBuilder builder)
    {
        builder.Dashboards().Remove<ContentDashboard>();
    }
}

Thanks


This is a companion discussion topic for the original entry at https://our.umbraco.com/forum/113882-how-to-remove-the-welcome-tab-from-content-dashboard