Skip to content
This repository was archived by the owner on Aug 21, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/commands/login/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export default class LoginIndex extends Command {

public async openLoginPage() {
// Open the Hypermode sign-in page in the default browser
const loginUrl = "http://localhost:3000/callback?port=5051&type=cli";
const loginUrl = "https://hypermode.com/callback?port=5051&type=cli";
await open(loginUrl);
}

Expand All @@ -94,7 +94,7 @@ export default class LoginIndex extends Command {
return;
}

const response = await fetch("http://localhost:3000/api/api-key/create", {
const response = await fetch("https://hypermode.com/api/api-key/create", {
method: "POST",
headers: {
Authorization: `Bearer ${jwt}`,
Expand Down