[250929] feat: YouMayLikeData관련 구조개선

This commit is contained in:
2025-09-29 18:31:38 +09:00
parent 4bece21b32
commit f35c00aca5
4 changed files with 142 additions and 89 deletions

View File

@@ -312,6 +312,12 @@ export const getMainYouMayLike =
(dispatch, getState) => {
const onSuccess = (response) => {
console.log("getMainYouMayLike onSuccess ", response.data);
console.log('[YouMayLike] API 응답 구조:', {
fullResponse: response.data,
dataField: response.data.data,
hasYoumaylike: !!(response.data.data && response.data.data.youmaylike),
youmaylikeLength: response.data.data?.youmaylike?.length || 0
});
dispatch({
type: types.GET_YOUMAYLIKE,