Skip to content

Commit

Permalink
fix(core): don't generate nxCloudId if running nx connect through nx …
Browse files Browse the repository at this point in the history
…console (#29060)
  • Loading branch information
MaxKless authored Nov 25, 2024
1 parent 5f92f17 commit 6904789
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,8 @@ export async function connectToNxCloud(
if (
!schema.generateToken &&
isGitHubDetected &&
schema.installationSource === 'nx-connect'
(schema.installationSource === 'nx-connect' ||
schema.installationSource === 'nx-console')
)
return null;

Expand Down

0 comments on commit 6904789

Please sign in to comment.