We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2878e1b commit f3e19ebCopy full SHA for f3e19eb
1 file changed
app/Filament/Pages/Welcome.php
@@ -2,6 +2,7 @@
2
3
namespace App\Filament\Pages;
4
5
+use App\Services\AuthenticationService;
6
use Filament\Pages\SimplePage;
7
use Filament\Support\Enums\Width;
8
use Filament\Tables\Table\Concerns\HasHeaderActions;
@@ -15,8 +16,8 @@ class Welcome extends SimplePage
15
16
17
public function mount(): void
18
{
- if (\App\Services\AuthenticationService::isUserAuthenticated()) {
19
- \App\Services\AuthenticationService::redirectToIntended();
+ if (AuthenticationService::isUserAuthenticated()) {
20
+ AuthenticationService::redirectToIntended();
21
}
22
23
0 commit comments