fix(notifications): restore missing toggleEvent on Email settings component (#11512)

This commit is contained in:
🏔️ Peak
2026-08-26 14:50:16 +02:00
committed by GitHub
parent 58d074721c
commit afe2cd4a8c
+2 -1
View File
@@ -2,6 +2,7 @@
namespace App\Livewire\Notifications;
use App\Livewire\Notifications\Concerns\TogglesNotificationEvents;
use App\Models\EmailNotificationSettings;
use App\Models\Team;
use App\Notifications\Test;
@@ -14,7 +15,7 @@ use Livewire\Component;
class Email extends Component
{
use AuthorizesRequests;
use AuthorizesRequests, TogglesNotificationEvents;
protected $listeners = ['refresh' => '$refresh'];