From dca530ec7e578d0d4b6a4f96585f7420d9d2a4a3 Mon Sep 17 00:00:00 2001 From: davidcrair <115373655+davidcrair@users.noreply.github.com> Date: Tue, 19 Mar 2024 13:27:59 -0400 Subject: [PATCH] removed console log --- src/app/userprofile/page.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/userprofile/page.jsx b/src/app/userprofile/page.jsx index d9d21ab..43c3534 100644 --- a/src/app/userprofile/page.jsx +++ b/src/app/userprofile/page.jsx @@ -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));