We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba1f7c4 commit 0f2be07Copy full SHA for 0f2be07
src/commands/auth.ts
@@ -94,11 +94,8 @@ export function registerAuthCommand(program: Command): void {
94
let clientId = optionClientId || existingClientId;
95
96
if (!clientId) {
97
- const clientIdPrompt = existingClientId
98
- ? `OAuth Client ID (default: ${existingClientId}): `
99
- : "OAuth Client ID: ";
100
- const clientIdInput = await prompt(clientIdPrompt);
101
- clientId = clientIdInput.trim() || existingClientId;
+ const clientIdInput = await prompt("OAuth Client ID: ");
+ clientId = clientIdInput.trim();
102
}
103
104
0 commit comments