Skip to content

Commit

Permalink
fix: order market relations
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeongh00 committed Jul 31, 2024
1 parent 4432b86 commit 9f5d509
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public List<OrderInfo> findAllOrders(String accessToken) {

if (!storeOrderList.isEmpty()) {
Store store = storeOrderList.get(0).getStore();
Market market = store.getMarket();
Market market = marketQueryService.findMarket(store.getMarket().getId());

OrderInfo orderInfo = new OrderInfo(
market.getName(),
Expand Down

0 comments on commit 9f5d509

Please sign in to comment.