Skip to content

Commit

Permalink
fix(core): fix powerpack license information grammar (#28725)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cammisuli authored Oct 31, 2024
1 parent 93b9b71 commit 4014662
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/nx/src/utils/powerpack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {}
}
Expand Down

0 comments on commit 4014662

Please sign in to comment.