From baf30679e0290be44f25bd27fe6004c101ffd20a Mon Sep 17 00:00:00 2001 From: Rowan Smith Date: Thu, 21 Aug 2025 10:08:51 +1000 Subject: [PATCH] chore: fix typo in clientNetcheckSummary for support bundle command (#19441) This PR fixes a typo in the original support bundle implementation for the `clientNetcheckSummary` var. --- cli/support.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/support.go b/cli/support.go index 70fadc3994..c55bab92cd 100644 --- a/cli/support.go +++ b/cli/support.go @@ -251,7 +251,7 @@ func summarizeBundle(inv *serpent.Invocation, bun *support.Bundle) { clientNetcheckSummary := bun.Network.Netcheck.Summarize("Client netcheck:", docsURL) if len(clientNetcheckSummary) > 0 { - cliui.Warn(inv.Stdout, "Networking issues detected:", deployHealthSummary...) + cliui.Warn(inv.Stdout, "Networking issues detected:", clientNetcheckSummary...) } }