From 96b1105343402b888ddda98f76c0445b6b3aedf1 Mon Sep 17 00:00:00 2001 From: SaelixCode Date: Thu, 19 Mar 2026 10:08:27 -0400 Subject: [PATCH] fix: add tls_ca, tls_cert, tls_key to frontend Node interface NodeContext.tsx was missing the three TLS fields that were already present on the backend Node type, causing TS2339 build errors in NodeManager.tsx. Co-Authored-By: Claude Sonnet 4.6 --- frontend/src/context/NodeContext.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/src/context/NodeContext.tsx b/frontend/src/context/NodeContext.tsx index a360d6e4..36d98ee9 100644 --- a/frontend/src/context/NodeContext.tsx +++ b/frontend/src/context/NodeContext.tsx @@ -15,6 +15,9 @@ export interface Node { ssh_user?: string; ssh_password?: string; ssh_key?: string; + tls_ca?: string; + tls_cert?: string; + tls_key?: string; } interface NodeContextType {