diff --git a/src/cli/nodes-cli/register.status.ts b/src/cli/nodes-cli/register.status.ts index 5cba488b4d1..0d6e6528f6f 100644 --- a/src/cli/nodes-cli/register.status.ts +++ b/src/cli/nodes-cli/register.status.ts @@ -345,8 +345,9 @@ export function registerNodesStatusCommands(nodes: Command) { const hasFilters = connectedOnly || sinceMs !== undefined; const livePairedNodes = Array.from(liveNodesById.values()).filter((n) => n.paired); const totalPairedCount = paired.length > 0 ? paired.length : livePairedNodes.length; - const filteredLabel = - hasFilters && filteredPaired.length !== totalPairedCount ? ` (of ${totalPairedCount})` : ""; + const filteredLabel = hasFilters && filteredPaired.length !== totalPairedCount + ? ` (of ${totalPairedCount})` + : ""; defaultRuntime.log( `Pending: ${pendingRows.length} ยท Paired: ${filteredPaired.length}${filteredLabel}`, );