I found out the issue was adding the big block of middleware to the bootstrap/app.php file. I think a lot of them are just added by default now. I did have to added my own middleware like this though and everything worked like usual again
$middleware->api(append: [
'consumer-login' => \App\Http\Middleware\CanFrontendLogin::class,
'admin-login' => \App\Http\Middleware\CanAdminLogin::class
]);