From 559faa7e2272f4d0adcd99c704083f728139c7b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?beeman=20=E2=AC=A2?= Date: Mon, 23 Jan 2023 16:21:43 +0000 Subject: [PATCH] fix(misc): fix broken workspace claim link (#14536) --- packages/nx/src/command-line/connect.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nx/src/command-line/connect.ts b/packages/nx/src/command-line/connect.ts index 5c72a4f93708e..70bf4d30b5e0c 100644 --- a/packages/nx/src/command-line/connect.ts +++ b/packages/nx/src/command-line/connect.ts @@ -43,7 +43,7 @@ export async function connectToNxCloudCommand( 'Go to https://nx.app to learn more.', ' ', 'If you have not done so already, please claim this workspace:', - `${getNxCloudUrl()}'/orgs/workspace-setup?accessToken=${getNxCloudToken()}`, + `${getNxCloudUrl()}/orgs/workspace-setup?accessToken=${getNxCloudToken()}`, ], }); return false;