diff --git a/node/src/cli/commands/login.command.ts b/node/src/cli/commands/login.command.ts index 33b19eb1de1..6ed398e4704 100644 --- a/node/src/cli/commands/login.command.ts +++ b/node/src/cli/commands/login.command.ts @@ -151,7 +151,7 @@ export class LoginCommand { if (clientId != null && clientSecret != null) { response = await this.authService.logInApiKey(clientId, clientSecret); } else if (ssoCode != null && ssoCodeVerifier != null) { - response = await this.authService.logInSso(ssoCode, ssoCodeVerifier, this.ssoRedirectUri); + response = await this.authService.logInSso(ssoCode, ssoCodeVerifier, this.ssoRedirectUri, null); } else { response = await this.authService.logIn(email, password); }