From 3403bf2c15a79d83de698c851ecdc87e366be726 Mon Sep 17 00:00:00 2001 From: vybe Date: Sun, 24 May 2026 21:08:27 +0000 Subject: [PATCH] Made some tweaks to comments to remove non-useful agent noise. --- tailscalectl/TailscaleWidget.qml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tailscalectl/TailscaleWidget.qml b/tailscalectl/TailscaleWidget.qml index 0c2ea12..2495569 100644 --- a/tailscalectl/TailscaleWidget.qml +++ b/tailscalectl/TailscaleWidget.qml @@ -22,7 +22,7 @@ PluginComponent { // Transient coordination for the defensive poll-act-poll toggle (exact behavior preserved). // We poll for on-the-ground truth (so we choose the correct "up"/"down" and don't lie to the user), - // act, then poll again for verification. This is *not* long-term cached state (see AGENTS.md). + // act, then poll again for verification. This is *not* long-term cached state. // The _pendingAction is short-lived per user action only. property string _pendingAction: "" @@ -53,7 +53,6 @@ PluginComponent { Proc.runCommand("tailscale-toggle", cmd, (out, c) => { if (c !== 0) { const action = root.isConnected ? "disconnect" : "connect"; - // Note: Proc callback provides no stderr (per chosen strategy); generic error only. ToastService.showError("tailscalectl", I18n.tr(TailscaleLib.formatError(action))); } root._pendingAction = "";