From 13a1b43688b43f8357acb5e86134bd201aba7416 Mon Sep 17 00:00:00 2001 From: arduinomaster22 Date: Thu, 19 Dec 2024 12:33:49 +0000 Subject: [PATCH] Fix styling --- src/TwoFactorAuthServiceProvider.php | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/TwoFactorAuthServiceProvider.php b/src/TwoFactorAuthServiceProvider.php index 2516531..d48128c 100644 --- a/src/TwoFactorAuthServiceProvider.php +++ b/src/TwoFactorAuthServiceProvider.php @@ -142,12 +142,9 @@ public function packageBooted(): void } FilamentColor::register([ - 'default' => $color + 'default' => $color, ]); - - - FilamentAsset::registerScriptData( $this->getScriptData(), $this->getAssetPackageName() @@ -191,7 +188,7 @@ public function packageBooted(): void * This route name is used multiple places in filament. */ Route::prefix(config('filament.path'))->group(function () { - Route::get('/filament-login', fn() => Redirect::route('login')) + Route::get('/filament-login', fn () => Redirect::route('login')) ->name('auth.login'); }); });