Skip to content

Commit 1c25172

Browse files
committed
chore: 디버그 로그 삭제
1 parent 6b2a4da commit 1c25172

3 files changed

Lines changed: 1 addition & 3 deletions

File tree

components/home/ProfileSection.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ interface ProfileSectionProps {
1212
const ProfileSection = ({ className, profile, uid }: ProfileSectionProps) => {
1313
const icon = getRandomProfileIcon(uid);
1414
const avatarUrl = profile?.avatar_url;
15-
console.log(avatarUrl);
1615

1716
return (
1817
<div className={className}>

lib/home/profileService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export interface Profile {
77
email: string;
88
streakDays: number;
99
tilCount: number;
10-
avatar_url: string;
10+
avatar_url?: string;
1111
}
1212

1313
// 1. 유저 프로필 정보 가져오기

services/auth/signup.service.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ export const signupWithGithub = async () => {
3636
const info = getAdditionalUserInfo(result);
3737
const githubUsername = info?.username ?? null;
3838
const avatar_url = info?.profile?.avatar_url;
39-
console.log(info);
4039
const userRef = doc(db, 'users', user.uid);
4140
const snap = await getDoc(userRef);
4241

0 commit comments

Comments
 (0)