File tree Expand file tree Collapse file tree 2 files changed +1
-6
lines changed
Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Original file line number Diff line number Diff 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} ;
Original file line number Diff line number Diff 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,
You can’t perform that action at this time.
0 commit comments