Replacing Login Route with Jetstream

Has anyone had any luck with overriding the /admin/login route with just the /login route from Jetstream?

There's no class I could find that I could change the ->login() to in adminPanelProvider, I tried setting the login class in config/filament.php to
'auth' => [ 'pages' => [ 'login' => [\Laravel\Fortify\Http\Controllers\AuthenticatedSessionController::class, 'create'], ], ],

but no luck..
Solution
You can just ommit the login() on our admin panel provider.
Was this page helpful?