From 8bbf20a26e7793f989f1224395b15cb25ecb40b4 Mon Sep 17 00:00:00 2001 From: Ashlee Radka Date: Mon, 23 Feb 2026 20:46:30 -0500 Subject: [PATCH] fix: correct misleading comment about gateway requirement in local pairing Co-Authored-By: Claude --- .../vellum-assistant/Features/Settings/PairingQRCodeSheet.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/macos/vellum-assistant/Features/Settings/PairingQRCodeSheet.swift b/clients/macos/vellum-assistant/Features/Settings/PairingQRCodeSheet.swift index 83b60268eb5..1d8187418ab 100644 --- a/clients/macos/vellum-assistant/Features/Settings/PairingQRCodeSheet.swift +++ b/clients/macos/vellum-assistant/Features/Settings/PairingQRCodeSheet.swift @@ -25,7 +25,7 @@ struct PairingQRCodeSheet: View { private var canGenerateQR: Bool { let hasRequiredFields = !gatewayUrl.isEmpty && !resolvedBearerToken.isEmpty if isLocalOverride { - // For developer local pairing, the gateway is not required + // For developer local pairing, the ingress-enabled flag is not required // but the URL must be a local/private address guard let url = URL(string: gatewayUrl), let host = url.host else { return false } return hasRequiredFields && LocalAddressValidator.isLocalAddress(host)