diff --git a/src/apis/products/useGetFeed.ts b/src/apis/products/useGetFeed.ts index 9a8a79b..de2da19 100644 --- a/src/apis/products/useGetFeed.ts +++ b/src/apis/products/useGetFeed.ts @@ -20,9 +20,8 @@ type GetFeedResponse = { async function getFeed(size: number): Promise { try { const response = await fetchInstance().get(`/products/feed?size=${size}`); - // console.log('getFeed response: ', response); - return response.data; + return response.data.data; } catch (error) { if (isAxiosError(error)) { if (error.response) {