diff --git a/app/Providers/FortifyServiceProvider.php b/app/Providers/FortifyServiceProvider.php index 03297f5..89cf770 100644 --- a/app/Providers/FortifyServiceProvider.php +++ b/app/Providers/FortifyServiceProvider.php @@ -51,7 +51,7 @@ public function boot(): void private function configureLoginView(): void { - Fortify::loginView(fn() => Inertia::render('Auth/Login', [ + Fortify::loginView(fn () => Inertia::render('Auth/Login', [ 'availableOauthProviders' => (new ActiveOauthProviderAction())->handle(), 'canResetPassword' => Route::has('password.request'), 'status' => session('status'), diff --git a/bootstrap/app.php b/bootstrap/app.php index cb686f2..33d3624 100644 --- a/bootstrap/app.php +++ b/bootstrap/app.php @@ -2,12 +2,12 @@ declare(strict_types=1); +use Sentry\Laravel\Integration; use Illuminate\Foundation\Application; use App\Http\Middleware\HandleInertiaRequests; use Illuminate\Foundation\Configuration\Exceptions; use Illuminate\Foundation\Configuration\Middleware; use Illuminate\Http\Middleware\AddLinkHeadersForPreloadedAssets; -use Sentry\Laravel\Integration; return Application::configure(basePath: dirname(__DIR__)) ->withRouting( diff --git a/config/sentry.php b/config/sentry.php index b159b0a..7974ad4 100644 --- a/config/sentry.php +++ b/config/sentry.php @@ -1,5 +1,7 @@