diff --git a/src/constants/navigation.ts b/src/constants/navigation.ts
index 52a930ff..4ef5d0c5 100644
--- a/src/constants/navigation.ts
+++ b/src/constants/navigation.ts
@@ -2,7 +2,7 @@ export const NAV_ITEMS = [
{ id: 'bookco', href: '/bookclub', label: 'bookco' },
{ id: 'bookclub', href: '/bookclub', label: '책 모임' },
{ id: 'exchange', href: '/exchange', label: '책 교환' },
- { id: 'wish', href: '/wish', label: '찜 목록' },
+ // { id: 'wish', href: '/wish', label: '찜 목록' },
{ id: 'chat', href: '/chat', label: '채팅' },
] as const;
diff --git a/src/features/auth/api/auth.ts b/src/features/auth/api/auth.ts
index 01abd80b..41db7216 100644
--- a/src/features/auth/api/auth.ts
+++ b/src/features/auth/api/auth.ts
@@ -30,7 +30,7 @@ export const login = async (data: LoginFormData) => {
await getUserInfo();
const token = getCookie('auth_token');
- console.log('token', token);
+
if (token) {
initializeSocket(token);
}
diff --git a/src/features/auth/api/refreshAccessToken.ts b/src/features/auth/api/refreshAccessToken.ts
index 453566c9..f5b9c73d 100644
--- a/src/features/auth/api/refreshAccessToken.ts
+++ b/src/features/auth/api/refreshAccessToken.ts
@@ -15,7 +15,6 @@ export const refreshAccessToken = async (refreshToken: string) => {
throw new Error('토큰 갱신 실패');
}
- console.log('리프레시 성공');
return response.json();
} catch (error) {
console.error('토큰 갱신 에러:', error);
diff --git a/src/features/bookclub/components/BookClubMainPage.tsx b/src/features/bookclub/components/BookClubMainPage.tsx
index 4cdc7632..f434bbdf 100644
--- a/src/features/bookclub/components/BookClubMainPage.tsx
+++ b/src/features/bookclub/components/BookClubMainPage.tsx
@@ -33,6 +33,7 @@ function BookClubMainPage() {
}
actionElement={