[서치 메인] today deals 노출 작업

- 데이터 받는곳 추가 및 노출 작업.
This commit is contained in:
junghoon86.park
2025-11-03 12:47:41 +09:00
parent a41dca6169
commit 52b1949330
3 changed files with 160 additions and 13 deletions

View File

@@ -15,6 +15,7 @@ const initialState = {
topSearchs: [],
popularBrands: [],
hotPicksForYou: [],
tsvInfo: [],
},
shopperHouseError: null, // ShopperHouse API 오류 정보 저장 (디버깅용)
shopperHouseErrorPopup: {
@@ -262,6 +263,7 @@ export const searchReducer = (state = initialState, action) => {
topSearchs: resultData.topSearchs || [],
popularBrands: resultData.popularBrands || [],
hotPicksForYou: resultData.hotPicksForYou || [],
tsvInfo: resultData.tsvInfo || [],
},
};
}
@@ -274,6 +276,7 @@ export const searchReducer = (state = initialState, action) => {
topSearchs: [],
popularBrands: [],
hotPicksForYou: [],
tsvInfo: [],
},
};