File tree 2 files changed +1
-3
lines changed
2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ export default class LoginIndex extends Command {
73
73
public async openLoginPage ( ) {
74
74
// Open the Hypermode sign-in page in the default browser
75
75
const loginUrl = 'https://hypermode.com/app/callback?port=5051&type=cli'
76
- await open ( loginUrl , { wait : false } )
76
+ await open ( loginUrl )
77
77
}
78
78
79
79
public async run ( ) : Promise < void > {
Original file line number Diff line number Diff line change @@ -30,8 +30,6 @@ export async function promptOrgSelection(orgs: Org[]): Promise<Org> {
30
30
message : 'Please select an organization:' ,
31
31
} )
32
32
33
- console . log ( `Selected organization: ${ chalk . dim ( selectedOrg . slug ) } ` )
34
-
35
33
return selectedOrg
36
34
} catch ( error ) {
37
35
const error_ = error instanceof ExitPromptError ? new TypeError ( chalk . red ( 'Organization selection prompt exited.' ) ) : error
You can’t perform that action at this time.
0 commit comments