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)

(cherry picked from commit 6904789)
  • Loading branch information
MaxKless authored and FrozenPandaz committed Nov 28, 2024
1 parent cd5c8d5 commit 2e89168
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 2e89168

Please sign in to comment.