Skip to content

Commit 807d647

Browse files
committed
Remove console log
1 parent f32beb7 commit 807d647

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/api/queries/get_user_progress.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ export interface UserProgress {
99
export const getUserProgress = async (username: string) => {
1010
try {
1111
const encodedUsername = encodeURIComponent(username);
12-
console.log(encodedUsername);
1312
const result = await axios.get<UserProgress[]>(`https://raw.githubusercontent.com/${encodedUsername}/${encodedUsername}-gitmastery-progress/refs/heads/main/progress.json`);
1413
return result.data;
1514
} catch {

0 commit comments

Comments
 (0)