Skip to content

Commit

Permalink
remove unnecssary logs
Browse files Browse the repository at this point in the history
  • Loading branch information
adhi0331 committed Jan 10, 2025
1 parent 62f6a9d commit aad1ff1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion frontend/src/api/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ export const verifyUser = async (firebaseToken: string): Promise<APIResult<User>
export async function getNotApprovedUsers(firebaseToken: string): Promise<APIResult<User[]>> {
try {
const headers = createAuthHeader(firebaseToken);
console.log(headers);
const response = await GET("/user/not-approved", headers);
const json = (await response.json()) as User[];
return { success: true, data: json };
Expand Down

0 comments on commit aad1ff1

Please sign in to comment.