render hook seemingly called from wrong panel

have this render hook in my AppPanelProvider only, but when I navigate to my admin panel, it gives an error from the livewire component that this hook references.

class AppPanelProvider extends PanelProvider
{
    public function boot()
    {
        FilamentView::registerRenderHook(
            'panels::sidebar.nav.end',
            fn (): string => Blade::render('@livewire(\'components.location-sidebar\')'),
        );
    }
...


There's nothing in my AdminPanelProvider referencing that component.
Was this page helpful?