Skip to content

Commit

Permalink
removed console log
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcrair committed Mar 19, 2024
1 parent 2e71fa8 commit dca530e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/userprofile/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default function UserProfilePage() {
fetch(`${process.env.NEXT_PUBLIC_BACKEND_URL}/getUserData?token=${token}`)
.then((res) => res.json())
.then((data) => {
console.log("user data: ", data);
// console.log("user data: ", data);
setUserData(data);
})
.catch((error) => console.error("Error fetching user data:", error));
Expand Down

0 comments on commit dca530e

Please sign in to comment.