diff --git a/src/commands/configure.shared.ts b/src/commands/configure.shared.ts index 1d36d8f078b0..8bff246f3377 100644 --- a/src/commands/configure.shared.ts +++ b/src/commands/configure.shared.ts @@ -111,9 +111,3 @@ export const select = (params: Parameters>[0]) => opt.hint === undefined ? opt : { ...opt, hint: stylePromptHint(opt.hint) }, ), }); -/** Styled password prompt wrapper. */ -export const password = (params: Parameters[0]) => - clackPassword({ - ...params, - message: stylePromptMessage(params.message), - });