Hiding "Dashboard" from a dashboard

Please nobody take this as whining, but as a constructive feedback: Hiding text "Dashboard" from your default dashboard really shouldn't be as hard as it has been so far.

Here is my custom Dashboard page defined in the panel (I can see it's being used as the navigation name does get updated):
class Dashboard extends BasePage
{

    protected static ?string $title = 'Home';
    protected ?string $heading = '';
    protected ?string $subheading = '';

    public function getHeading(): string | Htmlable
    {
        return '';
    }

    public function getSubheading(): string | Htmlable | null
    {
        return '';
    }

    public function getTitle(): string | Htmlable
    {
        return '';
    }
}

Ofc I can hide it with CSS, but this shouldn't be the way. Any pointers are greatly appreciated!
Screenshot_2023-09-09_at_11.13.34.png
Was this page helpful?