Skip to content

Commit

Permalink
Merge pull request #528 from tighten/ajm/fix-frontend-build
Browse files Browse the repository at this point in the history
Move Livewire to App namespace
  • Loading branch information
andrewmile authored Dec 14, 2024
2 parents 67a44f3 + 48ba6de commit fe2af34
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace App\Http\Livewire;
namespace App\Livewire;

use App\Models\Conference;
use Carbon\CarbonImmutable;
Expand Down
2 changes: 1 addition & 1 deletion routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
use App\Http\Controllers\SubmissionReactionsController;
use App\Http\Controllers\SubmissionsController;
use App\Http\Controllers\TalksController;
use App\Http\Livewire\ConferenceList;
use App\Livewire\ConferenceList;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Route;

Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/AccountTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Tests\Feature;

use App\Http\Livewire\ConferenceList;
use App\Livewire\ConferenceList;
use App\Models\Bio;
use App\Models\Conference;
use App\Models\Talk;
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/ConferenceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Tests\Feature;

use App\Http\Livewire\ConferenceList;
use App\Livewire\ConferenceList;
use App\Models\Conference;
use App\Models\User;
use Illuminate\Support\Carbon;
Expand Down

0 comments on commit fe2af34

Please sign in to comment.