From 06d90711c6da37739821855f730cfb4795a0d669 Mon Sep 17 00:00:00 2001 From: Saeed Vaziry Date: Sat, 2 Sep 2023 22:10:19 +0200 Subject: [PATCH] small bug fix --- app/Http/Livewire/NotificationChannels/AddChannel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Livewire/NotificationChannels/AddChannel.php b/app/Http/Livewire/NotificationChannels/AddChannel.php index 8b7fe83..5b8d6a5 100644 --- a/app/Http/Livewire/NotificationChannels/AddChannel.php +++ b/app/Http/Livewire/NotificationChannels/AddChannel.php @@ -22,7 +22,7 @@ public function add(): void $this->all() ); - $this->emitTo(KeysList::class, '$refresh'); + $this->emitTo(ChannelsList::class, '$refresh'); $this->dispatchBrowserEvent('added', true); }