chore: removing console.log

This commit is contained in:
Chubby Granny Chaser 2024-06-21 01:06:59 +01:00
parent 57de748ad3
commit 93298f0bc2
No known key found for this signature in database
2 changed files with 0 additions and 4 deletions

View file

@ -27,8 +27,6 @@ const updateProfile = async (
displayName: string, displayName: string,
newProfileImagePath: string | null newProfileImagePath: string | null
): Promise<UserProfile> => { ): Promise<UserProfile> => {
console.log(newProfileImagePath);
if (!newProfileImagePath) { if (!newProfileImagePath) {
return (await patchUserProfile(displayName)).data; return (await patchUserProfile(displayName)).data;
} }

View file

@ -28,8 +28,6 @@ export const User = () => {
getUserProfile(); getUserProfile();
}, [getUserProfile]); }, [getUserProfile]);
console.log(userProfile);
return ( return (
<SkeletonTheme baseColor={vars.color.background} highlightColor="#444"> <SkeletonTheme baseColor={vars.color.background} highlightColor="#444">
<div className={styles.wrapper}> <div className={styles.wrapper}>