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 f32beb7 commit 807d647Copy full SHA for 807d647
src/api/queries/get_user_progress.ts
@@ -9,7 +9,6 @@ export interface UserProgress {
9
export const getUserProgress = async (username: string) => {
10
try {
11
const encodedUsername = encodeURIComponent(username);
12
- console.log(encodedUsername);
13
const result = await axios.get<UserProgress[]>(`https://raw.githubusercontent.com/${encodedUsername}/${encodedUsername}-gitmastery-progress/refs/heads/main/progress.json`);
14
return result.data;
15
} catch {
0 commit comments