We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f656f85 commit d01a8f0Copy full SHA for d01a8f0
src/leetCodeManager.ts
@@ -58,8 +58,8 @@ class LeetCodeManager extends EventEmitter {
58
59
childProc.on("error", reject);
60
const name: string | undefined = await vscode.window.showInputBox({
61
- prompt: "Enter user name.",
62
- validateInput: (s: string): string | undefined => s && s.trim() ? undefined : "User name must not be empty",
+ prompt: "Enter username or E-mail.",
+ validateInput: (s: string): string | undefined => s && s.trim() ? undefined : "The input must not be empty",
63
});
64
if (!name) {
65
childProc.kill();
0 commit comments