Skip to content

Commit

Permalink
fix: ci issues
Browse files Browse the repository at this point in the history
  • Loading branch information
pushpak1300 committed Dec 9, 2024
1 parent bcaff17 commit 998ac56
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Tests
name: CI

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion app/Providers/FortifyServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 2 additions & 0 deletions config/sentry.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* Sentry Laravel SDK configuration file.
*
Expand Down

0 comments on commit 998ac56

Please sign in to comment.