Skip to content

Commit

Permalink
🐛 주문 페이지에서 주문할 상품을 불러오지 못하는 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
m-dzn committed Apr 28, 2022
1 parent 294456b commit 75cd93a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apis/cartApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
export const fetchCartItems = async (cartItems?: number[]) =>
client.get<CartItemResponse[]>(URLS.API.CART.ITEM, {
params: {
id: cartItems?.join(','),
ids: cartItems?.join(','),
},
});

Expand Down

0 comments on commit 75cd93a

Please sign in to comment.