From 4014662986264ce8e0e6a30695585ae861652f77 Mon Sep 17 00:00:00 2001 From: Jonathan Cammisuli Date: Thu, 31 Oct 2024 10:26:18 -0400 Subject: [PATCH] fix(core): fix powerpack license information grammar (#28725) --- packages/nx/src/utils/powerpack.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/nx/src/utils/powerpack.ts b/packages/nx/src/utils/powerpack.ts index cd4fb03e92fe3..6fd844edc1092 100644 --- a/packages/nx/src/utils/powerpack.ts +++ b/packages/nx/src/utils/powerpack.ts @@ -9,10 +9,10 @@ export async function printPowerpackLicense() { logger.log( `Nx Powerpack Licensed to ${organizationName} for ${seatCount} user${ - seatCount > 1 ? '' : 's' + seatCount > 1 ? 's' : '' } in ${ workspaceCount === 9999 ? 'an unlimited number of' : workspaceCount - } workspace${workspaceCount > 1 ? '' : 's'}` + } workspace${workspaceCount > 1 ? 's' : ''}` ); } catch {} }