@mintlify/cli 4.0.1330 → 4.0.1331

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mintlify/cli",
3
- "version": "4.0.1330",
3
+ "version": "4.0.1331",
4
4
  "description": "The Mintlify CLI",
5
5
  "engines": {
6
6
  "node": ">=18.0.0"
@@ -92,5 +92,5 @@
92
92
  "vitest": "2.1.9",
93
93
  "vitest-mock-process": "1.0.4"
94
94
  },
95
- "gitHead": "d87fc1c0b5ffeb2c45399ee59649028a93dd5dbd"
95
+ "gitHead": "463c6cfcac643215fb34b361e91089fdf12c339a"
96
96
  }
package/src/signup.tsx CHANGED
@@ -125,5 +125,5 @@ export async function signup(options: SignupOptions = {}): Promise<void> {
125
125
  const token = body as TokenResponse;
126
126
  await storeCredentials(token.access_token, token.refresh_token);
127
127
  addLog(<SuccessLog message="account created and logged in successfully" />);
128
- addLog(<Text>Please go to {DASHBOARD_URL} to continue integrating your GitHub.</Text>);
128
+ addLog(<Text>Continue in the browser tab where you verified your email to connect GitHub.</Text>);
129
129
  }