Skip to content

Commit 8fae18f

Browse files
committed
chore: 불필요한 console.log 제거
1 parent f65ad5b commit 8fae18f

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

src/api/crews/getNearCrewList.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,5 @@ export const getNearCrewList = async (params: GetNearCrewListRequest) => {
99
const { data } = await axiosInstance.get<GetNearCrewListResponse>('/crews', {
1010
params: params,
1111
});
12-
13-
console.log(params);
14-
1512
return data;
1613
};

src/pages/MainPage/MainPage.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export const MainPage = () => {
4646

4747
const { data: crewData } = useMainPageNearCrewListQuery({
4848
addressDepth1: addressDepth1 === null ? '서울시' : addressDepth1,
49-
addressDepth2: addressDepth2 === null ? '영등포구' : addressDepth2,
49+
addressDepth2: addressDepth2 === null ? '강남구' : addressDepth2,
5050
});
5151

5252
const filteredGameData = gameData.map(
@@ -74,8 +74,6 @@ export const MainPage = () => {
7474
)
7575
);
7676

77-
console.log(crewData);
78-
7977
const filteredCrewData = crewData.map(
8078
({
8179
id,

0 commit comments

Comments
 (0)