1
0
mirror of https://github.com/bitwarden/directory-connector synced 2026-01-06 02:23:35 +00:00

Upgrade @types/inquirer

Adjust call path for the inquirer Separator class
This commit is contained in:
Addison Beck
2024-01-22 14:23:32 -06:00
committed by Addison Beck
parent c803cd832f
commit 72190ca19e
3 changed files with 6 additions and 6 deletions

View File

@@ -205,7 +205,7 @@ export class LoginCommand {
selectedProvider = twoFactorProviders[0];
} else if (this.canInteract) {
const twoFactorOptions: (string | Separator)[] = twoFactorProviders.map((p) => p.name);
twoFactorOptions.push(new inquirer.Separator());
twoFactorOptions.push(new inquirer.default.Separator());
twoFactorOptions.push("Cancel");
const answer: inquirer.Answers = await inquirer.createPromptModule({
output: process.stderr,