My custom filament page is showing the wrong sidebar from different panel

Issue: When i'm on my custom filament page it's showing the wrong sidebar from the AdminPanel even when there is no /admin in the URL.

What i tried: When i use ->default() on the UserPanelProvider instead the AdminPanelProvider it works but causing other errors in my app.
i also removed /resources/views/vendor; upgraded filament and cleared cache.

What i want: it should display the correct sidebar with the current settings below or do i really need to use ->default() on the UserPanelProvider and if yes why?

        // UserPanelProvider
        return $panel
            // ->default()
            ->id('user')
            ->path('')


        // AdminPanelProvider
        return $panel
            ->default()
            ->id('admin')
            ->path('admin')
Solution
Oh shit, now i know my mistake 🤦‍♂️, i commented out ->discoverPages and didn't add my page in ->pages([]). It works now, thanks for helping. Also i removed it from web.php
Was this page helpful?