diff --git a/src/cli/nodes-cli/register.status.ts b/src/cli/nodes-cli/register.status.ts index 0d6e6528f6f..666102f5ddb 100644 --- a/src/cli/nodes-cli/register.status.ts +++ b/src/cli/nodes-cli/register.status.ts @@ -345,9 +345,10 @@ 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}`, );