8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de1dc41 commit 1e3e2a2Copy full SHA for 1e3e2a2
src/leetCodeManager.ts
@@ -70,7 +70,7 @@ class LeetCodeManager extends EventEmitter {
70
throw new Error(`The login method "${loginMethod}" is not supported.`);
71
}
72
const isByCookie: boolean = loginMethod === "Cookie";
73
- const inMessage: string = isByCookie ? "sign in by cookie" : "sign in";
+ const inMessage: string = isByCookie ? "signed in by cookie" : "signed in";
74
try {
75
const userName: string | undefined = await new Promise(async (resolve: (res: string | undefined) => void, reject: (e: Error) => void): Promise<void> => {
76
0 commit comments