Attempts to resolve issue with tests CI

This commit is contained in:
Refringe 2025-01-30 22:51:53 -05:00
parent 0c02b836eb
commit 933e3bbf1f
Signed by: Refringe
SSH Key Fingerprint: SHA256:t865XsQpfTeqPRBMN2G6+N8wlDjkgUCZF3WGW6O9N/k
2 changed files with 2 additions and 4 deletions

View File

@ -46,7 +46,7 @@ jobs:
run: php artisan storage:link run: php artisan storage:link
- name: Run Tests - name: Run Tests
run: php artisan test --compact run: php artisan test
- name: Display Laravel Log - name: Display Laravel Log
if: failure() if: failure()

View File

@ -11,7 +11,7 @@ use Livewire\Attributes\Locked;
use Livewire\Attributes\On; use Livewire\Attributes\On;
use Livewire\Component; use Livewire\Component;
class ManageOAuthConnections extends Component class ManageOauthConnections extends Component
{ {
use AuthorizesRequests; use AuthorizesRequests;
@ -37,8 +37,6 @@ class ManageOAuthConnections extends Component
*/ */
public function mount(): void public function mount(): void
{ {
$this->setName('profile.manage-oauth-connections');
$this->user = auth()->user(); $this->user = auth()->user();
} }