fix(ui): Cloudflare tunnel configuration should be an info, not a warning

This commit is contained in:
peaklabs-dev
2025-01-24 20:02:31 +01:00
parent 23f803b879
commit 91d90ccb6c

View File

@@ -41,7 +41,7 @@ class ConfigureCloudflareTunnels extends Component
$server->ip = $this->ssh_domain;
$server->save();
$server->settings->save();
$this->dispatch('warning', 'Cloudflare Tunnels configuration started.');
$this->dispatch('info', 'Cloudflare Tunnels configuration started.');
} catch (\Throwable $e) {
return handleError($e, $this);
}