From 1e3e2a27f8a9fc25c7b04242760e43662fb71414 Mon Sep 17 00:00:00 2001 From: Aditya Prakash Date: Sat, 18 Sep 2021 10:04:02 +0530 Subject: [PATCH] chore: Fixed the success message on sign-in --- src/leetCodeManager.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/leetCodeManager.ts b/src/leetCodeManager.ts index 089390d..7b8e601 100644 --- a/src/leetCodeManager.ts +++ b/src/leetCodeManager.ts @@ -70,7 +70,7 @@ class LeetCodeManager extends EventEmitter { throw new Error(`The login method "${loginMethod}" is not supported.`); } const isByCookie: boolean = loginMethod === "Cookie"; - const inMessage: string = isByCookie ? "sign in by cookie" : "sign in"; + const inMessage: string = isByCookie ? "signed in by cookie" : "signed in"; try { const userName: string | undefined = await new Promise(async (resolve: (res: string | undefined) => void, reject: (e: Error) => void): Promise => {