8000 chore: Fixed the success message on sign-in · AdityaPrakash-26/vscode-leetcode@1e3e2a2 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1e3e2a2

Browse files
chore: Fixed the success message on sign-in
1 parent de1dc41 commit 1e3e2a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/leetCodeManager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class LeetCodeManager extends EventEmitter {
7070
throw new Error(`The login method "${loginMethod}" is not supported.`);
7171
}
7272
const isByCookie: boolean = loginMethod === "Cookie";
73-
const inMessage: string = isByCookie ? "sign in by cookie" : "sign in";
73+
const inMessage: string = isByCookie ? "signed in by cookie" : "signed in";
7474
try {
7575
const userName: string | undefined = await new Promise(async (resolve: (res: string | undefined) => void, reject: (e: Error) => void): Promise<void> => {
7676

0 commit comments

Comments
 (0)
0