remove default value

This commit is contained in:
Andras Bacsai
2023-05-25 15:48:26 +02:00
parent 62a214920d
commit e9a2310f62
5 changed files with 6 additions and 6 deletions

View File

@@ -26,7 +26,7 @@ class RunCommand extends Component
{
try {
$this->validate();
$activity = remote_process([$this->command], Server::where('uuid', $this->server)->first(), ActivityTypes::INLINE->value);
$activity = remote_process([$this->command], Server::where('uuid', $this->server)->first());
$this->emit('newMonitorActivity', $activity->id);
} catch (\Exception $e) {
return general_error_handler($e);