We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ffb0ed commit ee62f2fCopy full SHA for ee62f2f
src/commands/login/index.ts
@@ -75,7 +75,7 @@ export default class LoginIndex extends Command {
75
76
public async openLoginPage() {
77
// Open the Hypermode sign-in page in the default browser
78
- const loginUrl = "http://localhost:3000/callback?port=5051&type=cli";
+ const loginUrl = "https://hypermode.com/callback?port=5051&type=cli";
79
await open(loginUrl);
80
}
81
@@ -94,7 +94,7 @@ export default class LoginIndex extends Command {
94
return;
95
96
97
- const response = await fetch("http://localhost:3000/api/api-key/create", {
+ const response = await fetch("https://hypermode.com/api/api-key/create", {
98
method: "POST",
99
headers: {
100
Authorization: `Bearer ${jwt}`,
0 commit comments