From ad98d135a10d7e8ede94529fea176898e079f446 Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Mon, 2 Jun 2025 15:36:45 +0200 Subject: [PATCH] refactor(activity-monitor): update dispatch method to use activityMonitor instead of deprecated newActivityMonitor --- app/Livewire/Server/ValidateAndInstall.php | 1 - 1 file changed, 1 deletion(-) diff --git a/app/Livewire/Server/ValidateAndInstall.php b/app/Livewire/Server/ValidateAndInstall.php index 459b50b91..dccfe34cb 100644 --- a/app/Livewire/Server/ValidateAndInstall.php +++ b/app/Livewire/Server/ValidateAndInstall.php @@ -106,7 +106,6 @@ class ValidateAndInstall extends Component if ($this->number_of_tries <= $this->max_tries) { $activity = $this->server->installDocker(); $this->number_of_tries++; - // $this->dispatch('newActivityMonitor', $activity->id, 'init', $this->number_of_tries); $this->dispatch('activityMonitor', $activity->id, 'init', $this->number_of_tries); }