adding user-menu.start element

In v2 I had:
Filament::registerRenderHook(
    'user-menu.start',
    static fn (): View => view('main-toolbar-help'),
);

which I transferred to v3 as:
$panel->renderHook('user-menu.start', static fn (): View => view('main-toolbar-help'))

just like the notifications: ->renderHook('user-menu.start', static fn (): View => view('main-toolbar-notifications'))

Unfortunately the template is not rendered and the element does not appear as user menu element.
Do you have any idea what was changed in v3 so this stopped working?
image.png
Was this page helpful?