Skip to content

Commit

Permalink
[refactor] : 배송준비중 status 띄어쓰기 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
chahyunsoo committed Mar 9, 2024
1 parent 08b491d commit 19e3ab8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public void confirmOrder(Long userId) {
for (Drone drone : findAllDroneByUserId) {
List<OrderHistory> orderHistoryList = orderHistoryRepository.findByDrone(drone);
for (OrderHistory orderHistory : orderHistoryList) {
orderHistory.updateOrderHistoryStatus("배송 준비중");
orderHistory.updateOrderHistoryStatus("배송준비중");
}
}
}
Expand Down

0 comments on commit 19e3ab8

Please sign in to comment.