Register support API token widget
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
tests / ui (push) Has been cancelled

This commit is contained in:
Codex Agent
2026-01-28 21:30:49 +01:00
parent e0e9723b11
commit 9ccf079a3a
2 changed files with 7 additions and 2 deletions

View File

@@ -2,7 +2,6 @@
namespace App\Filament\SuperAdmin\Pages\Auth;
use App\Filament\SuperAdmin\Widgets\SupportApiTokenManager;
use Filament\Auth\Pages\EditProfile as BaseEditProfile;
use Filament\Forms\Components\Select;
use Filament\Forms\Components\TextInput;
@@ -43,7 +42,7 @@ class EditProfile extends BaseEditProfile
Section::make('Support API Tokens')
->description('Manage bearer tokens for external support tooling.')
->schema([
Livewire::make(SupportApiTokenManager::class),
Livewire::make('support-api-token-manager'),
]),
]);
}