Skip to content

Commit

Permalink
fix: imageUrl fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeongh00 committed Aug 3, 2024
1 parent f73c975 commit eb721f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ public List<CartInfo> findAllCarts(String accessToken) {
cart.getId(),
store.getName(),
menu.getName(),
menu.getImageUrl(),
menu.getPrice(),
cart.getQuantity()
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
public record CartInfo(
Long cartid, // cart
String storeName, // store
String menuName, // menu
String menuName,
String menuImg,
Integer price, // menu
Integer quantity // cart
) {
Expand Down

0 comments on commit eb721f8

Please sign in to comment.